focus-trap 6.6.1 → 6.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ## 6.7.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 893dd2c: Add `document` option to support focus traps inside `<iframe>` elements (#97)
8
+ - 244f0c1: Extend the `setReturnFocus` option to receive a reference to the element that had focus prior to the trap being activated when a function is specified. Additionally, the function can now return `false` to leave focus where it is at the time of deactivation. (#485)
9
+
10
+ ### Patch Changes
11
+
12
+ - 60162eb: Fix bug where `KeyboardEvent` was not being passed to `escapeDeactivates` option when it's a function (#498)
13
+ - 7b6abfa: Fix how focus-trap determines the event's target, which was preventing traps inside open shadow DOMs from working properly (#496)
14
+ - 14b0ee8: Fix `initialFocus` option not supporting function returning `false` as documented (#490)
15
+
3
16
  ## 6.6.1
4
17
 
5
18
  ### Patch Changes
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # focus-trap [![CI](https://github.com/focus-trap/focus-trap/workflows/CI/badge.svg?branch=master&event=push)](https://github.com/focus-trap/focus-trap/actions?query=workflow:CI+branch:master) [![license](https://badgen.now.sh/badge/license/MIT)](./LICENSE)
2
2
 
3
3
  <!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
4
- [![All Contributors](https://img.shields.io/badge/all_contributors-17-orange.svg?style=flat-square)](#contributors)
4
+ [![All Contributors](https://img.shields.io/badge/all_contributors-19-orange.svg?style=flat-square)](#contributors)
5
5
  <!-- ALL-CONTRIBUTORS-BADGE:END -->
6
6
 
7
7
  Trap focus within a DOM node.
@@ -88,17 +88,31 @@ Returns a new focus trap on `element` (one or more "containers" of tabbable node
88
88
  - **onDeactivate** `{() => void}`: A function that will be called **before** returning focus to the node that had focus prior to activation (or configured with the `setReturnFocus` option) upon deactivation.
89
89
  - **onPostDeactivate** `{() => void}`: A function that will be called after the trap is deactivated, after `onDeactivate`. If the `returnFocus` deactivation option was set, it will be called **after** returning focus to the node that had focus prior to activation (or configured with the `setReturnFocus` option) upon deactivation; otherwise, it will be called after deactivation completes.
90
90
  - **checkCanReturnFocus** `{(trigger: HTMLElement | SVGElement) => Promise<void>}`: An animated trigger button will have a small delay between when `onDeactivate` is called and when the focus is able to be sent back to the trigger. `checkCanReturnFocus` expects a promise to be returned. When that promise settles (resolves or rejects), focus will be sent to to the node that had focus prior to the activation of the trap (or the node configured in the `setReturnFocus` option). Due to the lack of Promise support, `checkCanReturnFocus` is not supported in IE unless you provide a Promise polyfill.
91
- - **initialFocus** `{HTMLElement | SVGElement | string | () => HTMLElement | SVGElement | false}`: By default, when a focus trap is activated the first element in the focus trap's tab order will receive focus. With this option you can specify a different element to receive that initial focus. Can be a DOM node, or a selector string (which will be passed to `document.querySelector()` to find the DOM node), or a function that returns a DOM node. You can also set this option to `false` to prevent any initial focus at all when the trap activates.
91
+ - **initialFocus** `{HTMLElement | SVGElement | string | false | (() => HTMLElement | SVGElement | false)}`: By default, when a focus trap is activated the first element in the focus trap's tab order will receive focus. With this option you can specify a different element to receive that initial focus. Can be a DOM node, or a selector string (which will be passed to `document.querySelector()` to find the DOM node), or a function that returns a DOM node. You can also set this option to `false` (or to a function that returns `false`) to prevent any initial focus at all when the trap activates.
92
+ - 💬 Setting this option to `false` (or a function that returns `false`) will prevent the `fallbackFocus` option from being used.
93
+ - ⚠️ See warning below about **Shadow DOM** and selector strings.
92
94
  - **fallbackFocus** `{HTMLElement | SVGElement | string | () => HTMLElement | SVGElement}`: By default, an error will be thrown if the focus trap contains no elements in its tab order. With this option you can specify a fallback element to programmatically receive focus if no other tabbable elements are found. For example, you may want a popover's `<div>` to receive focus if the popover's content includes no tabbable elements. *Make sure the fallback element has a negative `tabindex` so it can be programmatically focused.* The option value can be a DOM node, a selector string (which will be passed to `document.querySelector()` to find the DOM node), or a function that returns a DOM node.
95
+ - 💬 If `initialFocus` is `false` (or a function that returns `false`), this function will not be called when the trap is activated, and no element will be initially focused. This function may still be called while the trap is active if things change such that there are no longer any tabbable nodes in the trap.
96
+ - ⚠️ See warning below about **Shadow DOM** and selector strings.
93
97
  - **escapeDeactivates** `{boolean} | (e: KeyboardEvent) => boolean)`: Default: `true`. If `false` or returns `false`, the `Escape` key will not trigger deactivation of the focus trap. This can be useful if you want to force the user to make a decision instead of allowing an easy way out. Note that if a function is given, it's only called if the ESC key was pressed.
94
98
  - **clickOutsideDeactivates** `{boolean | (e: MouseEvent | TouchEvent) => boolean}`: If `true` or returns `true`, a click outside the focus trap will deactivate the focus trap and allow the click event to do its thing (i.e. to pass-through to the element that was clicked). This option **takes precedence** over `allowOutsideClick` when it's set to `true`. Default: `false`.
95
99
  - ⚠️ If you're using a password manager such as 1Password, where the app adds a clickable icon to all fillable fields, you should avoid using this option, and instead use the `allowOutsideClick` option to better control exactly when the focus trap can be deactivated. The clickable icons are usually positioned absolutely, floating on top of the fields, and therefore _not_ part of the container the trap is managing. When using the `clickOutsideDeactivates` option, clicking on a field's 1Password icon will likely cause the trap to be unintentionally deactivated.
96
100
  - **allowOutsideClick** `{boolean | (e: MouseEvent | TouchEvent) => boolean}`: If set and is or returns `true`, a click outside the focus trap will not be prevented, even when `clickOutsideDeactivates` is `false`. When `clickOutsideDeactivates` is `true`, this option is **ignored** (i.e. if it's a function, it will not be called). Use this option to control if (and even which) clicks are allowed outside the trap in conjunction with `clickOutsideDeactivates: false`. Default: `false`.
97
101
  - ⚠️ If this is a function, it will be called **twice** on every click: First on `mousedown` (or `touchstart` on mobile), and then on the actual `click` if the function returned `true` on the first event. Be sure to check the event type if the double call is an issue in your code.
98
102
  - **returnFocusOnDeactivate** `{boolean}`: Default: `true`. If `false`, when the trap is deactivated, focus will *not* return to the element that had focus before activation.
99
- - **setReturnFocus** `{HTMLElement | SVGElement | string | () => HTMLElement | SVGElement}`: By default, focus trap on deactivation will return to the element that was focused before activation. With this option you can specify another element to programmatically receive focus after deactivation. Can be a DOM node, or a selector string (which will be passed to `document.querySelector()` to find the DOM node), or a function that returns a DOM node.
103
+ - **setReturnFocus** `{HTMLElement | SVGElement | string | (previousActiveElement: HTMLElement | SVGElement) => HTMLElement | SVGElement | false}`: By default, on **deactivation**, if `returnFocusOnDeactivate=true` (or if `returnFocus=true` in the [deactivation options](#trapdeactivatedeactivateoptions)), focus will be returned to the element that was focused just before activation. With this option, you can specify another element to programmatically receive focus after deactivation. It can be a DOM node, a selector string (which will be passed to `document.querySelector()` to find the DOM node **upon deactivation**), or a function that returns a DOM node to call **upon deactivation** (i.e. the selector and function options are only executed at the time the trap is deactivated), or `false` to leave focus where it is at the time of deactivation.
104
+ - 💬 Using the selector or function options is a good way to return focus to a DOM node that may not even exist at the time the trap is activated.
105
+ - ⚠️ See warning below about **Shadow DOM** and selector strings.
100
106
  - **preventScroll** `{boolean}`: By default, focus() will scroll to the element if not in viewport. It can produce unintended effects like scrolling back to the top of a modal. If set to `true`, no scroll will happen.
101
107
  - **delayInitialFocus** `{boolean}`: Default: `true`. Delays the autofocus to the next execution frame when the focus trap is activated. This prevents elements within the focusable element from capturing the event that triggered the focus trap activation.
108
+ - **document** {Document}: Default: `window.document`. Document where the focus trap will be active. This allows to use FocusTrap in an iFrame context.
109
+
110
+ #### Shadow DOM and selector strings
111
+
112
+ ⚠️ Beware that putting a focus-trap **inside** an open Shadow DOM means you must either:
113
+
114
+ - **Not use selector strings** for options that support these (because nodes inside Shadow DOMs, even open shadows, are not visible via `document.querySelector()`); OR
115
+ - You must **use the `document` option** to configure the focus trap to use your *shadow host* element as its document. The downside of this option is that, while selector queries on nodes inside your trap will now work, the trap will not prevent focus from being set on nodes outside your Shadow DOM, which is the same drawback as putting a focus trap <a href="https://focus-trap.github.io/focus-trap/#demo-in-iframe">inside an iframe</a>.
102
116
 
103
117
  ### trap.activate([activateOptions])
104
118
 
@@ -132,7 +146,7 @@ Returns the `trap`.
132
146
 
133
147
  These options are used to override the focus trap's default behavior for this particular deactivation.
134
148
 
135
- - **returnFocus** `{boolean}`: Default: whatever you chose for `createOptions.returnFocusOnDeactivate`.
149
+ - **returnFocus** `{boolean}`: Default: whatever you chose for `createOptions.returnFocusOnDeactivate`. If `true`, then the `setReturnFocus` option (specified when the trap was created) is used to determine where focus will be returned.
136
150
  - **onDeactivate** `{() => void}`: Default: whatever you chose for `createOptions.onDeactivate`. `null` or `false` are the equivalent of a `noop`.
137
151
  - **onPostDeactivate** `{() => void}`: Default: whatever you chose for `createOptions.onPostDeactivate`. `null` or `false` are the equivalent of a `noop`.
138
152
  - **checkCanReturnFocus** `{(trigger: HTMLElement | SVGElement) => Promise<void>}`: Default: whatever you chose for `createOptions.checkCanReturnFocus`. Not called if the `returnFocus` option is falsy. `trigger` is either the originally focused node prior to activation, or the result of the `setReturnFocus` configuration option.
@@ -173,10 +187,10 @@ Returns the `trap`.
173
187
 
174
188
  Read code in `docs/` and [see how it works](http://focus-trap.github.io/focus-trap/).
175
189
 
176
- Here's what happens in `default.js` (the "default behavior" demo):
190
+ Here's generally what happens in `default.js` (the "default behavior" demo):
177
191
 
178
192
  ```js
179
- const { createFocusTrap } = require('../../dist/focus-trap');
193
+ const { createFocusTrap } = require('../../index');
180
194
 
181
195
  const container = document.getElementById('default');
182
196
 
@@ -232,25 +246,27 @@ In alphabetical order:
232
246
  <!-- markdownlint-disable -->
233
247
  <table>
234
248
  <tr>
249
+ <td align="center"><a href="https://github.com/andersthorsen"><img src="https://avatars.githubusercontent.com/u/190081?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Anders Thorsen</b></sub></a><br /><a href="https://github.com/focus-trap/focus-trap/issues?q=author%3Aandersthorsen" title="Bug reports">🐛</a></td>
235
250
  <td align="center"><a href="https://github.com/bparish628"><img src="https://avatars1.githubusercontent.com/u/8492971?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Benjamin Parish</b></sub></a><br /><a href="https://github.com/focus-trap/focus-trap/issues?q=author%3Abparish628" title="Bug reports">🐛</a></td>
236
251
  <td align="center"><a href="https://clintgoodman.com"><img src="https://avatars3.githubusercontent.com/u/5473697?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Clint Goodman</b></sub></a><br /><a href="https://github.com/focus-trap/focus-trap/commits?author=cgood92" title="Code">💻</a> <a href="https://github.com/focus-trap/focus-trap/commits?author=cgood92" title="Documentation">📖</a> <a href="#example-cgood92" title="Examples">💡</a> <a href="https://github.com/focus-trap/focus-trap/commits?author=cgood92" title="Tests">⚠️</a></td>
237
252
  <td align="center"><a href="https://github.com/Dan503"><img src="https://avatars.githubusercontent.com/u/10610368?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Daniel Tonon</b></sub></a><br /><a href="https://github.com/focus-trap/focus-trap/commits?author=Dan503" title="Documentation">📖</a> <a href="#tool-Dan503" title="Tools">🔧</a> <a href="#a11y-Dan503" title="Accessibility">️️️️♿️</a> <a href="https://github.com/focus-trap/focus-trap/commits?author=Dan503" title="Code">💻</a></td>
238
253
  <td align="center"><a href="http://davidtheclark.com/"><img src="https://avatars2.githubusercontent.com/u/628431?v=4?s=100" width="100px;" alt=""/><br /><sub><b>David Clark</b></sub></a><br /><a href="https://github.com/focus-trap/focus-trap/commits?author=davidtheclark" title="Code">💻</a> <a href="https://github.com/focus-trap/focus-trap/issues?q=author%3Adavidtheclark" title="Bug reports">🐛</a> <a href="#infra-davidtheclark" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="https://github.com/focus-trap/focus-trap/commits?author=davidtheclark" title="Tests">⚠️</a> <a href="https://github.com/focus-trap/focus-trap/commits?author=davidtheclark" title="Documentation">📖</a> <a href="#maintenance-davidtheclark" title="Maintenance">🚧</a></td>
239
254
  <td align="center"><a href="https://github.com/features/security"><img src="https://avatars1.githubusercontent.com/u/27347476?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Dependabot</b></sub></a><br /><a href="#maintenance-dependabot" title="Maintenance">🚧</a></td>
240
255
  <td align="center"><a href="https://github.com/michael-ar"><img src="https://avatars3.githubusercontent.com/u/18557997?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Michael Reynolds</b></sub></a><br /><a href="https://github.com/focus-trap/focus-trap/issues?q=author%3Amichael-ar" title="Bug reports">🐛</a></td>
241
- <td align="center"><a href="https://github.com/liunate"><img src="https://avatars2.githubusercontent.com/u/38996291?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Nate Liu</b></sub></a><br /><a href="https://github.com/focus-trap/focus-trap/commits?author=liunate" title="Tests">⚠️</a></td>
242
256
  </tr>
243
257
  <tr>
244
- <td align="center"><a href="https://github.com/far-fetched"><img src="https://avatars.githubusercontent.com/u/11621383?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Piotr Panek</b></sub></a><br /><a href="https://github.com/focus-trap/focus-trap/issues?q=author%3Afar-fetched" title="Bug reports">🐛</a></td>
258
+ <td align="center"><a href="https://github.com/liunate"><img src="https://avatars2.githubusercontent.com/u/38996291?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Nate Liu</b></sub></a><br /><a href="https://github.com/focus-trap/focus-trap/commits?author=liunate" title="Tests">⚠️</a></td>
259
+ <td align="center"><a href="https://github.com/far-fetched"><img src="https://avatars.githubusercontent.com/u/11621383?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Piotr Panek</b></sub></a><br /><a href="https://github.com/focus-trap/focus-trap/issues?q=author%3Afar-fetched" title="Bug reports">🐛</a> <a href="https://github.com/focus-trap/focus-trap/commits?author=far-fetched" title="Documentation">📖</a> <a href="https://github.com/focus-trap/focus-trap/commits?author=far-fetched" title="Code">💻</a> <a href="https://github.com/focus-trap/focus-trap/commits?author=far-fetched" title="Tests">⚠️</a></td>
245
260
  <td align="center"><a href="https://github.com/randypuro"><img src="https://avatars2.githubusercontent.com/u/2579?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Randy Puro</b></sub></a><br /><a href="https://github.com/focus-trap/focus-trap/issues?q=author%3Arandypuro" title="Bug reports">🐛</a></td>
246
261
  <td align="center"><a href="https://github.com/sadick254"><img src="https://avatars2.githubusercontent.com/u/5238135?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Sadick</b></sub></a><br /><a href="https://github.com/focus-trap/focus-trap/commits?author=sadick254" title="Code">💻</a> <a href="https://github.com/focus-trap/focus-trap/commits?author=sadick254" title="Tests">⚠️</a> <a href="https://github.com/focus-trap/focus-trap/commits?author=sadick254" title="Documentation">📖</a></td>
247
262
  <td align="center"><a href="https://scottblinch.me/"><img src="https://avatars2.githubusercontent.com/u/4682114?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Scott Blinch</b></sub></a><br /><a href="https://github.com/focus-trap/focus-trap/commits?author=scottblinch" title="Documentation">📖</a></td>
248
263
  <td align="center"><a href="https://seanmcp.com/"><img src="https://avatars1.githubusercontent.com/u/6360367?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Sean McPherson</b></sub></a><br /><a href="https://github.com/focus-trap/focus-trap/commits?author=SeanMcP" title="Code">💻</a> <a href="https://github.com/focus-trap/focus-trap/commits?author=SeanMcP" title="Documentation">📖</a></td>
249
264
  <td align="center"><a href="https://recollectr.io"><img src="https://avatars2.githubusercontent.com/u/6835891?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Slapbox</b></sub></a><br /><a href="https://github.com/focus-trap/focus-trap/issues?q=author%3ASlapbox" title="Bug reports">🐛</a></td>
250
- <td align="center"><a href="https://stefancameron.com/"><img src="https://avatars3.githubusercontent.com/u/2855350?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Stefan Cameron</b></sub></a><br /><a href="https://github.com/focus-trap/focus-trap/commits?author=stefcameron" title="Code">💻</a> <a href="https://github.com/focus-trap/focus-trap/issues?q=author%3Astefcameron" title="Bug reports">🐛</a> <a href="#infra-stefcameron" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="https://github.com/focus-trap/focus-trap/commits?author=stefcameron" title="Tests">⚠️</a> <a href="https://github.com/focus-trap/focus-trap/commits?author=stefcameron" title="Documentation">📖</a> <a href="#maintenance-stefcameron" title="Maintenance">🚧</a></td>
251
265
  </tr>
252
266
  <tr>
267
+ <td align="center"><a href="https://stefancameron.com/"><img src="https://avatars3.githubusercontent.com/u/2855350?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Stefan Cameron</b></sub></a><br /><a href="https://github.com/focus-trap/focus-trap/commits?author=stefcameron" title="Code">💻</a> <a href="https://github.com/focus-trap/focus-trap/issues?q=author%3Astefcameron" title="Bug reports">🐛</a> <a href="#infra-stefcameron" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="https://github.com/focus-trap/focus-trap/commits?author=stefcameron" title="Tests">⚠️</a> <a href="https://github.com/focus-trap/focus-trap/commits?author=stefcameron" title="Documentation">📖</a> <a href="#maintenance-stefcameron" title="Maintenance">🚧</a></td>
253
268
  <td align="center"><a href="http://tylerhawkins.info/201R/"><img src="https://avatars0.githubusercontent.com/u/13806458?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Tyler Hawkins</b></sub></a><br /><a href="#tool-thawkin3" title="Tools">🔧</a> <a href="https://github.com/focus-trap/focus-trap/commits?author=thawkin3" title="Tests">⚠️</a> <a href="https://github.com/focus-trap/focus-trap/commits?author=thawkin3" title="Documentation">📖</a></td>
269
+ <td align="center"><a href="https://github.com/wandroll"><img src="https://avatars.githubusercontent.com/u/4492317?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Wandrille Verlut</b></sub></a><br /><a href="https://github.com/focus-trap/focus-trap/commits?author=wandroll" title="Code">💻</a> <a href="https://github.com/focus-trap/focus-trap/commits?author=wandroll" title="Tests">⚠️</a> <a href="https://github.com/focus-trap/focus-trap/commits?author=wandroll" title="Documentation">📖</a> <a href="#tool-wandroll" title="Tools">🔧</a></td>
254
270
  <td align="center"><a href="http://willmruzek.com/"><img src="https://avatars.githubusercontent.com/u/108522?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Will Mruzek</b></sub></a><br /><a href="https://github.com/focus-trap/focus-trap/commits?author=mruzekw" title="Code">💻</a> <a href="https://github.com/focus-trap/focus-trap/commits?author=mruzekw" title="Documentation">📖</a> <a href="#example-mruzekw" title="Examples">💡</a> <a href="https://github.com/focus-trap/focus-trap/commits?author=mruzekw" title="Tests">⚠️</a> <a href="#question-mruzekw" title="Answering Questions">💬</a></td>
255
271
  <td align="center"><a href="https://github.com/zioth"><img src="https://avatars3.githubusercontent.com/u/945603?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Zioth</b></sub></a><br /><a href="#ideas-zioth" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/focus-trap/focus-trap/issues?q=author%3Azioth" title="Bug reports">🐛</a></td>
256
272
  </tr>
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * focus-trap 6.6.1
2
+ * focus-trap 6.7.0
3
3
  * @license MIT, https://github.com/focus-trap/focus-trap/blob/master/LICENSE
4
4
  */
5
5
  import { tabbable, isFocusable } from 'tabbable';
@@ -140,8 +140,19 @@ var valueOrHandler = function valueOrHandler(value) {
140
140
  return typeof value === 'function' ? value.apply(void 0, params) : value;
141
141
  };
142
142
 
143
+ var getActualTarget = function getActualTarget(event) {
144
+ // NOTE: If the trap is _inside_ a shadow DOM, event.target will always be the
145
+ // shadow host. However, event.target.composedPath() will be an array of
146
+ // nodes "clicked" from inner-most (the actual element inside the shadow) to
147
+ // outer-most (the host HTML document). If we have access to composedPath(),
148
+ // then use its first element; otherwise, fall back to event.target (and
149
+ // this only works for an _open_ shadow DOM; otherwise,
150
+ // composedPath()[0] === event.target always).
151
+ return event.target.shadowRoot && typeof event.composedPath === 'function' ? event.composedPath()[0] : event.target;
152
+ };
153
+
143
154
  var createFocusTrap = function createFocusTrap(elements, userOptions) {
144
- var doc = document;
155
+ var doc = userOptions.document || document;
145
156
 
146
157
  var config = _objectSpread2({
147
158
  returnFocusOnDeactivate: true,
@@ -175,33 +186,52 @@ var createFocusTrap = function createFocusTrap(elements, userOptions) {
175
186
  };
176
187
 
177
188
  var containersContain = function containersContain(element) {
178
- return state.containers.some(function (container) {
189
+ return !!(element && state.containers.some(function (container) {
179
190
  return container.contains(element);
180
- });
191
+ }));
181
192
  };
193
+ /**
194
+ * Gets the node for the given option, which is expected to be an option that
195
+ * can be either a DOM node, a string that is a selector to get a node, `false`
196
+ * (if a node is explicitly NOT given), or a function that returns any of these
197
+ * values.
198
+ * @param {string} optionName
199
+ * @returns {undefined | false | HTMLElement | SVGElement} Returns
200
+ * `undefined` if the option is not specified; `false` if the option
201
+ * resolved to `false` (node explicitly not given); otherwise, the resolved
202
+ * DOM node.
203
+ * @throws {Error} If the option is set, not `false`, and is not, or does not
204
+ * resolve to a node.
205
+ */
206
+
182
207
 
183
208
  var getNodeForOption = function getNodeForOption(optionName) {
184
209
  var optionValue = config[optionName];
185
210
 
186
- if (!optionValue) {
187
- return null;
211
+ if (typeof optionValue === 'function') {
212
+ for (var _len2 = arguments.length, params = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {
213
+ params[_key2 - 1] = arguments[_key2];
214
+ }
215
+
216
+ optionValue = optionValue.apply(void 0, params);
188
217
  }
189
218
 
190
- var node = optionValue;
219
+ if (!optionValue) {
220
+ if (optionValue === undefined || optionValue === false) {
221
+ return optionValue;
222
+ } // else, empty string (invalid), null (invalid), 0 (invalid)
191
223
 
192
- if (typeof optionValue === 'string') {
193
- node = doc.querySelector(optionValue);
194
224
 
195
- if (!node) {
196
- throw new Error("`".concat(optionName, "` refers to no known node"));
197
- }
225
+ throw new Error("`".concat(optionName, "` was specified but was not a node, or did not return a node"));
198
226
  }
199
227
 
200
- if (typeof optionValue === 'function') {
201
- node = optionValue();
228
+ var node = optionValue; // could be HTMLElement, SVGElement, or non-empty string at this point
229
+
230
+ if (typeof optionValue === 'string') {
231
+ node = doc.querySelector(optionValue); // resolve to node, or null if fails
202
232
 
203
233
  if (!node) {
204
- throw new Error("`".concat(optionName, "` did not return a node"));
234
+ throw new Error("`".concat(optionName, "` as selector refers to no known node"));
205
235
  }
206
236
  }
207
237
 
@@ -209,20 +239,22 @@ var createFocusTrap = function createFocusTrap(elements, userOptions) {
209
239
  };
210
240
 
211
241
  var getInitialFocusNode = function getInitialFocusNode() {
212
- var node; // false indicates we want no initialFocus at all
242
+ var node = getNodeForOption('initialFocus'); // false explicitly indicates we want no initialFocus at all
213
243
 
214
- if (getOption({}, 'initialFocus') === false) {
244
+ if (node === false) {
215
245
  return false;
216
246
  }
217
247
 
218
- if (getNodeForOption('initialFocus') !== null) {
219
- node = getNodeForOption('initialFocus');
220
- } else if (containersContain(doc.activeElement)) {
221
- node = doc.activeElement;
222
- } else {
223
- var firstTabbableGroup = state.tabbableGroups[0];
224
- var firstTabbableNode = firstTabbableGroup && firstTabbableGroup.firstTabbableNode;
225
- node = firstTabbableNode || getNodeForOption('fallbackFocus');
248
+ if (node === undefined) {
249
+ // option not specified: use fallback options
250
+ if (containersContain(doc.activeElement)) {
251
+ node = doc.activeElement;
252
+ } else {
253
+ var firstTabbableGroup = state.tabbableGroups[0];
254
+ var firstTabbableNode = firstTabbableGroup && firstTabbableGroup.firstTabbableNode; // NOTE: `fallbackFocus` option function cannot return `false` (not supported)
255
+
256
+ node = firstTabbableNode || getNodeForOption('fallbackFocus');
257
+ }
226
258
  }
227
259
 
228
260
  if (!node) {
@@ -250,7 +282,8 @@ var createFocusTrap = function createFocusTrap(elements, userOptions) {
250
282
  }); // remove groups with no tabbable nodes
251
283
  // throw if no groups have tabbable nodes and we don't have a fallback focus node either
252
284
 
253
- if (state.tabbableGroups.length <= 0 && !getNodeForOption('fallbackFocus')) {
285
+ if (state.tabbableGroups.length <= 0 && !getNodeForOption('fallbackFocus') // returning false not supported for this option
286
+ ) {
254
287
  throw new Error('Your focus-trap must have at least one container with at least one tabbable node in it at all times');
255
288
  }
256
289
  };
@@ -280,14 +313,16 @@ var createFocusTrap = function createFocusTrap(elements, userOptions) {
280
313
  };
281
314
 
282
315
  var getReturnFocusNode = function getReturnFocusNode(previousActiveElement) {
283
- var node = getNodeForOption('setReturnFocus');
284
- return node ? node : previousActiveElement;
316
+ var node = getNodeForOption('setReturnFocus', previousActiveElement);
317
+ return node ? node : node === false ? false : previousActiveElement;
285
318
  }; // This needs to be done on mousedown and touchstart instead of click
286
319
  // so that it precedes the focus event.
287
320
 
288
321
 
289
322
  var checkPointerDown = function checkPointerDown(e) {
290
- if (containersContain(e.target)) {
323
+ var target = getActualTarget(e);
324
+
325
+ if (containersContain(target)) {
291
326
  // allow the click since it ocurred inside the trap
292
327
  return;
293
328
  }
@@ -306,7 +341,7 @@ var createFocusTrap = function createFocusTrap(elements, userOptions) {
306
341
  // that was clicked, whether it's focusable or not; by setting
307
342
  // `returnFocus: true`, we'll attempt to re-focus the node originally-focused
308
343
  // on activation (or the configured `setReturnFocus` node)
309
- returnFocus: config.returnFocusOnDeactivate && !isFocusable(e.target)
344
+ returnFocus: config.returnFocusOnDeactivate && !isFocusable(target)
310
345
  });
311
346
  return;
312
347
  } // This is needed for mobile devices.
@@ -325,11 +360,12 @@ var createFocusTrap = function createFocusTrap(elements, userOptions) {
325
360
 
326
361
 
327
362
  var checkFocusIn = function checkFocusIn(e) {
328
- var targetContained = containersContain(e.target); // In Firefox when you Tab out of an iframe the Document is briefly focused.
363
+ var target = getActualTarget(e);
364
+ var targetContained = containersContain(target); // In Firefox when you Tab out of an iframe the Document is briefly focused.
329
365
 
330
- if (targetContained || e.target instanceof Document) {
366
+ if (targetContained || target instanceof Document) {
331
367
  if (targetContained) {
332
- state.mostRecentlyFocusedNode = e.target;
368
+ state.mostRecentlyFocusedNode = target;
333
369
  }
334
370
  } else {
335
371
  // escaped! pull it back in to where it just left
@@ -343,6 +379,7 @@ var createFocusTrap = function createFocusTrap(elements, userOptions) {
343
379
 
344
380
 
345
381
  var checkTab = function checkTab(e) {
382
+ var target = getActualTarget(e);
346
383
  updateTabbableNodes();
347
384
  var destinationNode = null;
348
385
 
@@ -352,7 +389,7 @@ var createFocusTrap = function createFocusTrap(elements, userOptions) {
352
389
  // with tabIndex='-1' and was given initial focus
353
390
  var containerIndex = findIndex(state.tabbableGroups, function (_ref) {
354
391
  var container = _ref.container;
355
- return container.contains(e.target);
392
+ return container.contains(target);
356
393
  });
357
394
 
358
395
  if (containerIndex < 0) {
@@ -370,10 +407,10 @@ var createFocusTrap = function createFocusTrap(elements, userOptions) {
370
407
  // is the target the first tabbable node in a group?
371
408
  var startOfGroupIndex = findIndex(state.tabbableGroups, function (_ref2) {
372
409
  var firstTabbableNode = _ref2.firstTabbableNode;
373
- return e.target === firstTabbableNode;
410
+ return target === firstTabbableNode;
374
411
  });
375
412
 
376
- if (startOfGroupIndex < 0 && state.tabbableGroups[containerIndex].container === e.target) {
413
+ if (startOfGroupIndex < 0 && state.tabbableGroups[containerIndex].container === target) {
377
414
  // an exception case where the target is the container itself, in which
378
415
  // case, we should handle shift+tab as if focus were on the container's
379
416
  // first tabbable node, and go to the last tabbable node of the LAST group
@@ -393,10 +430,10 @@ var createFocusTrap = function createFocusTrap(elements, userOptions) {
393
430
  // is the target the last tabbable node in a group?
394
431
  var lastOfGroupIndex = findIndex(state.tabbableGroups, function (_ref3) {
395
432
  var lastTabbableNode = _ref3.lastTabbableNode;
396
- return e.target === lastTabbableNode;
433
+ return target === lastTabbableNode;
397
434
  });
398
435
 
399
- if (lastOfGroupIndex < 0 && state.tabbableGroups[containerIndex].container === e.target) {
436
+ if (lastOfGroupIndex < 0 && state.tabbableGroups[containerIndex].container === target) {
400
437
  // an exception case where the target is the container itself, in which
401
438
  // case, we should handle tab as if focus were on the container's
402
439
  // last tabbable node, and go to the first tabbable node of the FIRST group
@@ -414,6 +451,7 @@ var createFocusTrap = function createFocusTrap(elements, userOptions) {
414
451
  }
415
452
  }
416
453
  } else {
454
+ // NOTE: the fallbackFocus option does not support returning false to opt-out
417
455
  destinationNode = getNodeForOption('fallbackFocus');
418
456
  }
419
457
 
@@ -425,7 +463,7 @@ var createFocusTrap = function createFocusTrap(elements, userOptions) {
425
463
  };
426
464
 
427
465
  var checkKey = function checkKey(e) {
428
- if (isEscapeEvent(e) && valueOrHandler(config.escapeDeactivates) !== false) {
466
+ if (isEscapeEvent(e) && valueOrHandler(config.escapeDeactivates, e) !== false) {
429
467
  e.preventDefault();
430
468
  trap.deactivate();
431
469
  return;
@@ -442,7 +480,9 @@ var createFocusTrap = function createFocusTrap(elements, userOptions) {
442
480
  return;
443
481
  }
444
482
 
445
- if (containersContain(e.target)) {
483
+ var target = getActualTarget(e);
484
+
485
+ if (containersContain(target)) {
446
486
  return;
447
487
  }
448
488
 
@@ -1 +1 @@
1
- {"version":3,"file":"focus-trap.esm.js","sources":["../index.js"],"sourcesContent":["import { tabbable, isFocusable } from 'tabbable';\n\nconst activeFocusTraps = (function () {\n const trapQueue = [];\n return {\n activateTrap(trap) {\n if (trapQueue.length > 0) {\n const activeTrap = trapQueue[trapQueue.length - 1];\n if (activeTrap !== trap) {\n activeTrap.pause();\n }\n }\n\n const trapIndex = trapQueue.indexOf(trap);\n if (trapIndex === -1) {\n trapQueue.push(trap);\n } else {\n // move this existing trap to the front of the queue\n trapQueue.splice(trapIndex, 1);\n trapQueue.push(trap);\n }\n },\n\n deactivateTrap(trap) {\n const trapIndex = trapQueue.indexOf(trap);\n if (trapIndex !== -1) {\n trapQueue.splice(trapIndex, 1);\n }\n\n if (trapQueue.length > 0) {\n trapQueue[trapQueue.length - 1].unpause();\n }\n },\n };\n})();\n\nconst isSelectableInput = function (node) {\n return (\n node.tagName &&\n node.tagName.toLowerCase() === 'input' &&\n typeof node.select === 'function'\n );\n};\n\nconst isEscapeEvent = function (e) {\n return e.key === 'Escape' || e.key === 'Esc' || e.keyCode === 27;\n};\n\nconst isTabEvent = function (e) {\n return e.key === 'Tab' || e.keyCode === 9;\n};\n\nconst delay = function (fn) {\n return setTimeout(fn, 0);\n};\n\n// Array.find/findIndex() are not supported on IE; this replicates enough\n// of Array.findIndex() for our needs\nconst findIndex = function (arr, fn) {\n let idx = -1;\n\n arr.every(function (value, i) {\n if (fn(value)) {\n idx = i;\n return false; // break\n }\n\n return true; // next\n });\n\n return idx;\n};\n\n/**\n * Get an option's value when it could be a plain value, or a handler that provides\n * the value.\n * @param {*} value Option's value to check.\n * @param {...*} [params] Any parameters to pass to the handler, if `value` is a function.\n * @returns {*} The `value`, or the handler's returned value.\n */\nconst valueOrHandler = function (value, ...params) {\n return typeof value === 'function' ? value(...params) : value;\n};\n\nconst createFocusTrap = function (elements, userOptions) {\n const doc = document;\n\n const config = {\n returnFocusOnDeactivate: true,\n escapeDeactivates: true,\n delayInitialFocus: true,\n ...userOptions,\n };\n\n const state = {\n // @type {Array<HTMLElement>}\n containers: [],\n\n // list of objects identifying the first and last tabbable nodes in all containers/groups in\n // the trap\n // NOTE: it's possible that a group has no tabbable nodes if nodes get removed while the trap\n // is active, but the trap should never get to a state where there isn't at least one group\n // with at least one tabbable node in it (that would lead to an error condition that would\n // result in an error being thrown)\n // @type {Array<{ container: HTMLElement, firstTabbableNode: HTMLElement|null, lastTabbableNode: HTMLElement|null }>}\n tabbableGroups: [],\n\n nodeFocusedBeforeActivation: null,\n mostRecentlyFocusedNode: null,\n active: false,\n paused: false,\n\n // timer ID for when delayInitialFocus is true and initial focus in this trap\n // has been delayed during activation\n delayInitialFocusTimer: undefined,\n };\n\n let trap; // eslint-disable-line prefer-const -- some private functions reference it, and its methods reference private functions, so we must declare here and define later\n\n const getOption = (configOverrideOptions, optionName, configOptionName) => {\n return configOverrideOptions &&\n configOverrideOptions[optionName] !== undefined\n ? configOverrideOptions[optionName]\n : config[configOptionName || optionName];\n };\n\n const containersContain = function (element) {\n return state.containers.some((container) => container.contains(element));\n };\n\n const getNodeForOption = function (optionName) {\n const optionValue = config[optionName];\n if (!optionValue) {\n return null;\n }\n\n let node = optionValue;\n\n if (typeof optionValue === 'string') {\n node = doc.querySelector(optionValue);\n if (!node) {\n throw new Error(`\\`${optionName}\\` refers to no known node`);\n }\n }\n\n if (typeof optionValue === 'function') {\n node = optionValue();\n if (!node) {\n throw new Error(`\\`${optionName}\\` did not return a node`);\n }\n }\n\n return node;\n };\n\n const getInitialFocusNode = function () {\n let node;\n\n // false indicates we want no initialFocus at all\n if (getOption({}, 'initialFocus') === false) {\n return false;\n }\n\n if (getNodeForOption('initialFocus') !== null) {\n node = getNodeForOption('initialFocus');\n } else if (containersContain(doc.activeElement)) {\n node = doc.activeElement;\n } else {\n const firstTabbableGroup = state.tabbableGroups[0];\n const firstTabbableNode =\n firstTabbableGroup && firstTabbableGroup.firstTabbableNode;\n node = firstTabbableNode || getNodeForOption('fallbackFocus');\n }\n\n if (!node) {\n throw new Error(\n 'Your focus-trap needs to have at least one focusable element'\n );\n }\n\n return node;\n };\n\n const updateTabbableNodes = function () {\n state.tabbableGroups = state.containers\n .map((container) => {\n const tabbableNodes = tabbable(container);\n\n if (tabbableNodes.length > 0) {\n return {\n container,\n firstTabbableNode: tabbableNodes[0],\n lastTabbableNode: tabbableNodes[tabbableNodes.length - 1],\n };\n }\n\n return undefined;\n })\n .filter((group) => !!group); // remove groups with no tabbable nodes\n\n // throw if no groups have tabbable nodes and we don't have a fallback focus node either\n if (\n state.tabbableGroups.length <= 0 &&\n !getNodeForOption('fallbackFocus')\n ) {\n throw new Error(\n 'Your focus-trap must have at least one container with at least one tabbable node in it at all times'\n );\n }\n };\n\n const tryFocus = function (node) {\n if (node === false) {\n return;\n }\n\n if (node === doc.activeElement) {\n return;\n }\n\n if (!node || !node.focus) {\n tryFocus(getInitialFocusNode());\n return;\n }\n\n node.focus({ preventScroll: !!config.preventScroll });\n state.mostRecentlyFocusedNode = node;\n\n if (isSelectableInput(node)) {\n node.select();\n }\n };\n\n const getReturnFocusNode = function (previousActiveElement) {\n const node = getNodeForOption('setReturnFocus');\n\n return node ? node : previousActiveElement;\n };\n\n // This needs to be done on mousedown and touchstart instead of click\n // so that it precedes the focus event.\n const checkPointerDown = function (e) {\n if (containersContain(e.target)) {\n // allow the click since it ocurred inside the trap\n return;\n }\n\n if (valueOrHandler(config.clickOutsideDeactivates, e)) {\n // immediately deactivate the trap\n trap.deactivate({\n // if, on deactivation, we should return focus to the node originally-focused\n // when the trap was activated (or the configured `setReturnFocus` node),\n // then assume it's also OK to return focus to the outside node that was\n // just clicked, causing deactivation, as long as that node is focusable;\n // if it isn't focusable, then return focus to the original node focused\n // on activation (or the configured `setReturnFocus` node)\n // NOTE: by setting `returnFocus: false`, deactivate() will do nothing,\n // which will result in the outside click setting focus to the node\n // that was clicked, whether it's focusable or not; by setting\n // `returnFocus: true`, we'll attempt to re-focus the node originally-focused\n // on activation (or the configured `setReturnFocus` node)\n returnFocus: config.returnFocusOnDeactivate && !isFocusable(e.target),\n });\n return;\n }\n\n // This is needed for mobile devices.\n // (If we'll only let `click` events through,\n // then on mobile they will be blocked anyways if `touchstart` is blocked.)\n if (valueOrHandler(config.allowOutsideClick, e)) {\n // allow the click outside the trap to take place\n return;\n }\n\n // otherwise, prevent the click\n e.preventDefault();\n };\n\n // In case focus escapes the trap for some strange reason, pull it back in.\n const checkFocusIn = function (e) {\n const targetContained = containersContain(e.target);\n // In Firefox when you Tab out of an iframe the Document is briefly focused.\n if (targetContained || e.target instanceof Document) {\n if (targetContained) {\n state.mostRecentlyFocusedNode = e.target;\n }\n } else {\n // escaped! pull it back in to where it just left\n e.stopImmediatePropagation();\n tryFocus(state.mostRecentlyFocusedNode || getInitialFocusNode());\n }\n };\n\n // Hijack Tab events on the first and last focusable nodes of the trap,\n // in order to prevent focus from escaping. If it escapes for even a\n // moment it can end up scrolling the page and causing confusion so we\n // kind of need to capture the action at the keydown phase.\n const checkTab = function (e) {\n updateTabbableNodes();\n\n let destinationNode = null;\n\n if (state.tabbableGroups.length > 0) {\n // make sure the target is actually contained in a group\n // NOTE: the target may also be the container itself if it's tabbable\n // with tabIndex='-1' and was given initial focus\n const containerIndex = findIndex(state.tabbableGroups, ({ container }) =>\n container.contains(e.target)\n );\n\n if (containerIndex < 0) {\n // target not found in any group: quite possible focus has escaped the trap,\n // so bring it back in to...\n if (e.shiftKey) {\n // ...the last node in the last group\n destinationNode =\n state.tabbableGroups[state.tabbableGroups.length - 1]\n .lastTabbableNode;\n } else {\n // ...the first node in the first group\n destinationNode = state.tabbableGroups[0].firstTabbableNode;\n }\n } else if (e.shiftKey) {\n // REVERSE\n\n // is the target the first tabbable node in a group?\n let startOfGroupIndex = findIndex(\n state.tabbableGroups,\n ({ firstTabbableNode }) => e.target === firstTabbableNode\n );\n\n if (\n startOfGroupIndex < 0 &&\n state.tabbableGroups[containerIndex].container === e.target\n ) {\n // an exception case where the target is the container itself, in which\n // case, we should handle shift+tab as if focus were on the container's\n // first tabbable node, and go to the last tabbable node of the LAST group\n startOfGroupIndex = containerIndex;\n }\n\n if (startOfGroupIndex >= 0) {\n // YES: then shift+tab should go to the last tabbable node in the\n // previous group (and wrap around to the last tabbable node of\n // the LAST group if it's the first tabbable node of the FIRST group)\n const destinationGroupIndex =\n startOfGroupIndex === 0\n ? state.tabbableGroups.length - 1\n : startOfGroupIndex - 1;\n\n const destinationGroup = state.tabbableGroups[destinationGroupIndex];\n destinationNode = destinationGroup.lastTabbableNode;\n }\n } else {\n // FORWARD\n\n // is the target the last tabbable node in a group?\n let lastOfGroupIndex = findIndex(\n state.tabbableGroups,\n ({ lastTabbableNode }) => e.target === lastTabbableNode\n );\n\n if (\n lastOfGroupIndex < 0 &&\n state.tabbableGroups[containerIndex].container === e.target\n ) {\n // an exception case where the target is the container itself, in which\n // case, we should handle tab as if focus were on the container's\n // last tabbable node, and go to the first tabbable node of the FIRST group\n lastOfGroupIndex = containerIndex;\n }\n\n if (lastOfGroupIndex >= 0) {\n // YES: then tab should go to the first tabbable node in the next\n // group (and wrap around to the first tabbable node of the FIRST\n // group if it's the last tabbable node of the LAST group)\n const destinationGroupIndex =\n lastOfGroupIndex === state.tabbableGroups.length - 1\n ? 0\n : lastOfGroupIndex + 1;\n\n const destinationGroup = state.tabbableGroups[destinationGroupIndex];\n destinationNode = destinationGroup.firstTabbableNode;\n }\n }\n } else {\n destinationNode = getNodeForOption('fallbackFocus');\n }\n\n if (destinationNode) {\n e.preventDefault();\n tryFocus(destinationNode);\n }\n // else, let the browser take care of [shift+]tab and move the focus\n };\n\n const checkKey = function (e) {\n if (\n isEscapeEvent(e) &&\n valueOrHandler(config.escapeDeactivates) !== false\n ) {\n e.preventDefault();\n trap.deactivate();\n return;\n }\n\n if (isTabEvent(e)) {\n checkTab(e);\n return;\n }\n };\n\n const checkClick = function (e) {\n if (valueOrHandler(config.clickOutsideDeactivates, e)) {\n return;\n }\n\n if (containersContain(e.target)) {\n return;\n }\n\n if (valueOrHandler(config.allowOutsideClick, e)) {\n return;\n }\n\n e.preventDefault();\n e.stopImmediatePropagation();\n };\n\n //\n // EVENT LISTENERS\n //\n\n const addListeners = function () {\n if (!state.active) {\n return;\n }\n\n // There can be only one listening focus trap at a time\n activeFocusTraps.activateTrap(trap);\n\n // Delay ensures that the focused element doesn't capture the event\n // that caused the focus trap activation.\n state.delayInitialFocusTimer = config.delayInitialFocus\n ? delay(function () {\n tryFocus(getInitialFocusNode());\n })\n : tryFocus(getInitialFocusNode());\n\n doc.addEventListener('focusin', checkFocusIn, true);\n doc.addEventListener('mousedown', checkPointerDown, {\n capture: true,\n passive: false,\n });\n doc.addEventListener('touchstart', checkPointerDown, {\n capture: true,\n passive: false,\n });\n doc.addEventListener('click', checkClick, {\n capture: true,\n passive: false,\n });\n doc.addEventListener('keydown', checkKey, {\n capture: true,\n passive: false,\n });\n\n return trap;\n };\n\n const removeListeners = function () {\n if (!state.active) {\n return;\n }\n\n doc.removeEventListener('focusin', checkFocusIn, true);\n doc.removeEventListener('mousedown', checkPointerDown, true);\n doc.removeEventListener('touchstart', checkPointerDown, true);\n doc.removeEventListener('click', checkClick, true);\n doc.removeEventListener('keydown', checkKey, true);\n\n return trap;\n };\n\n //\n // TRAP DEFINITION\n //\n\n trap = {\n activate(activateOptions) {\n if (state.active) {\n return this;\n }\n\n const onActivate = getOption(activateOptions, 'onActivate');\n const onPostActivate = getOption(activateOptions, 'onPostActivate');\n const checkCanFocusTrap = getOption(activateOptions, 'checkCanFocusTrap');\n\n if (!checkCanFocusTrap) {\n updateTabbableNodes();\n }\n\n state.active = true;\n state.paused = false;\n state.nodeFocusedBeforeActivation = doc.activeElement;\n\n if (onActivate) {\n onActivate();\n }\n\n const finishActivation = () => {\n if (checkCanFocusTrap) {\n updateTabbableNodes();\n }\n addListeners();\n if (onPostActivate) {\n onPostActivate();\n }\n };\n\n if (checkCanFocusTrap) {\n checkCanFocusTrap(state.containers.concat()).then(\n finishActivation,\n finishActivation\n );\n return this;\n }\n\n finishActivation();\n return this;\n },\n\n deactivate(deactivateOptions) {\n if (!state.active) {\n return this;\n }\n\n clearTimeout(state.delayInitialFocusTimer); // noop if undefined\n state.delayInitialFocusTimer = undefined;\n\n removeListeners();\n state.active = false;\n state.paused = false;\n\n activeFocusTraps.deactivateTrap(trap);\n\n const onDeactivate = getOption(deactivateOptions, 'onDeactivate');\n const onPostDeactivate = getOption(deactivateOptions, 'onPostDeactivate');\n const checkCanReturnFocus = getOption(\n deactivateOptions,\n 'checkCanReturnFocus'\n );\n\n if (onDeactivate) {\n onDeactivate();\n }\n\n const returnFocus = getOption(\n deactivateOptions,\n 'returnFocus',\n 'returnFocusOnDeactivate'\n );\n\n const finishDeactivation = () => {\n delay(() => {\n if (returnFocus) {\n tryFocus(getReturnFocusNode(state.nodeFocusedBeforeActivation));\n }\n if (onPostDeactivate) {\n onPostDeactivate();\n }\n });\n };\n\n if (returnFocus && checkCanReturnFocus) {\n checkCanReturnFocus(\n getReturnFocusNode(state.nodeFocusedBeforeActivation)\n ).then(finishDeactivation, finishDeactivation);\n return this;\n }\n\n finishDeactivation();\n return this;\n },\n\n pause() {\n if (state.paused || !state.active) {\n return this;\n }\n\n state.paused = true;\n removeListeners();\n\n return this;\n },\n\n unpause() {\n if (!state.paused || !state.active) {\n return this;\n }\n\n state.paused = false;\n updateTabbableNodes();\n addListeners();\n\n return this;\n },\n\n updateContainerElements(containerElements) {\n const elementsAsArray = [].concat(containerElements).filter(Boolean);\n\n state.containers = elementsAsArray.map((element) =>\n typeof element === 'string' ? doc.querySelector(element) : element\n );\n\n if (state.active) {\n updateTabbableNodes();\n }\n\n return this;\n },\n };\n\n // initialize container elements\n trap.updateContainerElements(elements);\n\n return trap;\n};\n\nexport { createFocusTrap };\n"],"names":["activeFocusTraps","trapQueue","activateTrap","trap","length","activeTrap","pause","trapIndex","indexOf","push","splice","deactivateTrap","unpause","isSelectableInput","node","tagName","toLowerCase","select","isEscapeEvent","e","key","keyCode","isTabEvent","delay","fn","setTimeout","findIndex","arr","idx","every","value","i","valueOrHandler","params","createFocusTrap","elements","userOptions","doc","document","config","returnFocusOnDeactivate","escapeDeactivates","delayInitialFocus","state","containers","tabbableGroups","nodeFocusedBeforeActivation","mostRecentlyFocusedNode","active","paused","delayInitialFocusTimer","undefined","getOption","configOverrideOptions","optionName","configOptionName","containersContain","element","some","container","contains","getNodeForOption","optionValue","querySelector","Error","getInitialFocusNode","activeElement","firstTabbableGroup","firstTabbableNode","updateTabbableNodes","map","tabbableNodes","tabbable","lastTabbableNode","filter","group","tryFocus","focus","preventScroll","getReturnFocusNode","previousActiveElement","checkPointerDown","target","clickOutsideDeactivates","deactivate","returnFocus","isFocusable","allowOutsideClick","preventDefault","checkFocusIn","targetContained","Document","stopImmediatePropagation","checkTab","destinationNode","containerIndex","shiftKey","startOfGroupIndex","destinationGroupIndex","destinationGroup","lastOfGroupIndex","checkKey","checkClick","addListeners","addEventListener","capture","passive","removeListeners","removeEventListener","activate","activateOptions","onActivate","onPostActivate","checkCanFocusTrap","finishActivation","concat","then","deactivateOptions","clearTimeout","onDeactivate","onPostDeactivate","checkCanReturnFocus","finishDeactivation","updateContainerElements","containerElements","elementsAsArray","Boolean"],"mappings":"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"}
1
+ {"version":3,"file":"focus-trap.esm.js","sources":["../index.js"],"sourcesContent":["import { tabbable, isFocusable } from 'tabbable';\n\nconst activeFocusTraps = (function () {\n const trapQueue = [];\n return {\n activateTrap(trap) {\n if (trapQueue.length > 0) {\n const activeTrap = trapQueue[trapQueue.length - 1];\n if (activeTrap !== trap) {\n activeTrap.pause();\n }\n }\n\n const trapIndex = trapQueue.indexOf(trap);\n if (trapIndex === -1) {\n trapQueue.push(trap);\n } else {\n // move this existing trap to the front of the queue\n trapQueue.splice(trapIndex, 1);\n trapQueue.push(trap);\n }\n },\n\n deactivateTrap(trap) {\n const trapIndex = trapQueue.indexOf(trap);\n if (trapIndex !== -1) {\n trapQueue.splice(trapIndex, 1);\n }\n\n if (trapQueue.length > 0) {\n trapQueue[trapQueue.length - 1].unpause();\n }\n },\n };\n})();\n\nconst isSelectableInput = function (node) {\n return (\n node.tagName &&\n node.tagName.toLowerCase() === 'input' &&\n typeof node.select === 'function'\n );\n};\n\nconst isEscapeEvent = function (e) {\n return e.key === 'Escape' || e.key === 'Esc' || e.keyCode === 27;\n};\n\nconst isTabEvent = function (e) {\n return e.key === 'Tab' || e.keyCode === 9;\n};\n\nconst delay = function (fn) {\n return setTimeout(fn, 0);\n};\n\n// Array.find/findIndex() are not supported on IE; this replicates enough\n// of Array.findIndex() for our needs\nconst findIndex = function (arr, fn) {\n let idx = -1;\n\n arr.every(function (value, i) {\n if (fn(value)) {\n idx = i;\n return false; // break\n }\n\n return true; // next\n });\n\n return idx;\n};\n\n/**\n * Get an option's value when it could be a plain value, or a handler that provides\n * the value.\n * @param {*} value Option's value to check.\n * @param {...*} [params] Any parameters to pass to the handler, if `value` is a function.\n * @returns {*} The `value`, or the handler's returned value.\n */\nconst valueOrHandler = function (value, ...params) {\n return typeof value === 'function' ? value(...params) : value;\n};\n\nconst getActualTarget = function (event) {\n // NOTE: If the trap is _inside_ a shadow DOM, event.target will always be the\n // shadow host. However, event.target.composedPath() will be an array of\n // nodes \"clicked\" from inner-most (the actual element inside the shadow) to\n // outer-most (the host HTML document). If we have access to composedPath(),\n // then use its first element; otherwise, fall back to event.target (and\n // this only works for an _open_ shadow DOM; otherwise,\n // composedPath()[0] === event.target always).\n return event.target.shadowRoot && typeof event.composedPath === 'function'\n ? event.composedPath()[0]\n : event.target;\n};\n\nconst createFocusTrap = function (elements, userOptions) {\n const doc = userOptions.document || document;\n\n const config = {\n returnFocusOnDeactivate: true,\n escapeDeactivates: true,\n delayInitialFocus: true,\n ...userOptions,\n };\n\n const state = {\n // @type {Array<HTMLElement>}\n containers: [],\n\n // list of objects identifying the first and last tabbable nodes in all containers/groups in\n // the trap\n // NOTE: it's possible that a group has no tabbable nodes if nodes get removed while the trap\n // is active, but the trap should never get to a state where there isn't at least one group\n // with at least one tabbable node in it (that would lead to an error condition that would\n // result in an error being thrown)\n // @type {Array<{ container: HTMLElement, firstTabbableNode: HTMLElement|null, lastTabbableNode: HTMLElement|null }>}\n tabbableGroups: [],\n\n nodeFocusedBeforeActivation: null,\n mostRecentlyFocusedNode: null,\n active: false,\n paused: false,\n\n // timer ID for when delayInitialFocus is true and initial focus in this trap\n // has been delayed during activation\n delayInitialFocusTimer: undefined,\n };\n\n let trap; // eslint-disable-line prefer-const -- some private functions reference it, and its methods reference private functions, so we must declare here and define later\n\n const getOption = (configOverrideOptions, optionName, configOptionName) => {\n return configOverrideOptions &&\n configOverrideOptions[optionName] !== undefined\n ? configOverrideOptions[optionName]\n : config[configOptionName || optionName];\n };\n\n const containersContain = function (element) {\n return !!(\n element &&\n state.containers.some((container) => container.contains(element))\n );\n };\n\n /**\n * Gets the node for the given option, which is expected to be an option that\n * can be either a DOM node, a string that is a selector to get a node, `false`\n * (if a node is explicitly NOT given), or a function that returns any of these\n * values.\n * @param {string} optionName\n * @returns {undefined | false | HTMLElement | SVGElement} Returns\n * `undefined` if the option is not specified; `false` if the option\n * resolved to `false` (node explicitly not given); otherwise, the resolved\n * DOM node.\n * @throws {Error} If the option is set, not `false`, and is not, or does not\n * resolve to a node.\n */\n const getNodeForOption = function (optionName, ...params) {\n let optionValue = config[optionName];\n\n if (typeof optionValue === 'function') {\n optionValue = optionValue(...params);\n }\n\n if (!optionValue) {\n if (optionValue === undefined || optionValue === false) {\n return optionValue;\n }\n // else, empty string (invalid), null (invalid), 0 (invalid)\n\n throw new Error(\n `\\`${optionName}\\` was specified but was not a node, or did not return a node`\n );\n }\n\n let node = optionValue; // could be HTMLElement, SVGElement, or non-empty string at this point\n\n if (typeof optionValue === 'string') {\n node = doc.querySelector(optionValue); // resolve to node, or null if fails\n if (!node) {\n throw new Error(\n `\\`${optionName}\\` as selector refers to no known node`\n );\n }\n }\n\n return node;\n };\n\n const getInitialFocusNode = function () {\n let node = getNodeForOption('initialFocus');\n\n // false explicitly indicates we want no initialFocus at all\n if (node === false) {\n return false;\n }\n\n if (node === undefined) {\n // option not specified: use fallback options\n if (containersContain(doc.activeElement)) {\n node = doc.activeElement;\n } else {\n const firstTabbableGroup = state.tabbableGroups[0];\n const firstTabbableNode =\n firstTabbableGroup && firstTabbableGroup.firstTabbableNode;\n\n // NOTE: `fallbackFocus` option function cannot return `false` (not supported)\n node = firstTabbableNode || getNodeForOption('fallbackFocus');\n }\n }\n\n if (!node) {\n throw new Error(\n 'Your focus-trap needs to have at least one focusable element'\n );\n }\n\n return node;\n };\n\n const updateTabbableNodes = function () {\n state.tabbableGroups = state.containers\n .map((container) => {\n const tabbableNodes = tabbable(container);\n\n if (tabbableNodes.length > 0) {\n return {\n container,\n firstTabbableNode: tabbableNodes[0],\n lastTabbableNode: tabbableNodes[tabbableNodes.length - 1],\n };\n }\n\n return undefined;\n })\n .filter((group) => !!group); // remove groups with no tabbable nodes\n\n // throw if no groups have tabbable nodes and we don't have a fallback focus node either\n if (\n state.tabbableGroups.length <= 0 &&\n !getNodeForOption('fallbackFocus') // returning false not supported for this option\n ) {\n throw new Error(\n 'Your focus-trap must have at least one container with at least one tabbable node in it at all times'\n );\n }\n };\n\n const tryFocus = function (node) {\n if (node === false) {\n return;\n }\n\n if (node === doc.activeElement) {\n return;\n }\n\n if (!node || !node.focus) {\n tryFocus(getInitialFocusNode());\n return;\n }\n\n node.focus({ preventScroll: !!config.preventScroll });\n state.mostRecentlyFocusedNode = node;\n\n if (isSelectableInput(node)) {\n node.select();\n }\n };\n\n const getReturnFocusNode = function (previousActiveElement) {\n const node = getNodeForOption('setReturnFocus', previousActiveElement);\n return node ? node : node === false ? false : previousActiveElement;\n };\n\n // This needs to be done on mousedown and touchstart instead of click\n // so that it precedes the focus event.\n const checkPointerDown = function (e) {\n const target = getActualTarget(e);\n\n if (containersContain(target)) {\n // allow the click since it ocurred inside the trap\n return;\n }\n\n if (valueOrHandler(config.clickOutsideDeactivates, e)) {\n // immediately deactivate the trap\n trap.deactivate({\n // if, on deactivation, we should return focus to the node originally-focused\n // when the trap was activated (or the configured `setReturnFocus` node),\n // then assume it's also OK to return focus to the outside node that was\n // just clicked, causing deactivation, as long as that node is focusable;\n // if it isn't focusable, then return focus to the original node focused\n // on activation (or the configured `setReturnFocus` node)\n // NOTE: by setting `returnFocus: false`, deactivate() will do nothing,\n // which will result in the outside click setting focus to the node\n // that was clicked, whether it's focusable or not; by setting\n // `returnFocus: true`, we'll attempt to re-focus the node originally-focused\n // on activation (or the configured `setReturnFocus` node)\n returnFocus: config.returnFocusOnDeactivate && !isFocusable(target),\n });\n return;\n }\n\n // This is needed for mobile devices.\n // (If we'll only let `click` events through,\n // then on mobile they will be blocked anyways if `touchstart` is blocked.)\n if (valueOrHandler(config.allowOutsideClick, e)) {\n // allow the click outside the trap to take place\n return;\n }\n\n // otherwise, prevent the click\n e.preventDefault();\n };\n\n // In case focus escapes the trap for some strange reason, pull it back in.\n const checkFocusIn = function (e) {\n const target = getActualTarget(e);\n const targetContained = containersContain(target);\n\n // In Firefox when you Tab out of an iframe the Document is briefly focused.\n if (targetContained || target instanceof Document) {\n if (targetContained) {\n state.mostRecentlyFocusedNode = target;\n }\n } else {\n // escaped! pull it back in to where it just left\n e.stopImmediatePropagation();\n tryFocus(state.mostRecentlyFocusedNode || getInitialFocusNode());\n }\n };\n\n // Hijack Tab events on the first and last focusable nodes of the trap,\n // in order to prevent focus from escaping. If it escapes for even a\n // moment it can end up scrolling the page and causing confusion so we\n // kind of need to capture the action at the keydown phase.\n const checkTab = function (e) {\n const target = getActualTarget(e);\n updateTabbableNodes();\n\n let destinationNode = null;\n\n if (state.tabbableGroups.length > 0) {\n // make sure the target is actually contained in a group\n // NOTE: the target may also be the container itself if it's tabbable\n // with tabIndex='-1' and was given initial focus\n const containerIndex = findIndex(state.tabbableGroups, ({ container }) =>\n container.contains(target)\n );\n\n if (containerIndex < 0) {\n // target not found in any group: quite possible focus has escaped the trap,\n // so bring it back in to...\n if (e.shiftKey) {\n // ...the last node in the last group\n destinationNode =\n state.tabbableGroups[state.tabbableGroups.length - 1]\n .lastTabbableNode;\n } else {\n // ...the first node in the first group\n destinationNode = state.tabbableGroups[0].firstTabbableNode;\n }\n } else if (e.shiftKey) {\n // REVERSE\n\n // is the target the first tabbable node in a group?\n let startOfGroupIndex = findIndex(\n state.tabbableGroups,\n ({ firstTabbableNode }) => target === firstTabbableNode\n );\n\n if (\n startOfGroupIndex < 0 &&\n state.tabbableGroups[containerIndex].container === target\n ) {\n // an exception case where the target is the container itself, in which\n // case, we should handle shift+tab as if focus were on the container's\n // first tabbable node, and go to the last tabbable node of the LAST group\n startOfGroupIndex = containerIndex;\n }\n\n if (startOfGroupIndex >= 0) {\n // YES: then shift+tab should go to the last tabbable node in the\n // previous group (and wrap around to the last tabbable node of\n // the LAST group if it's the first tabbable node of the FIRST group)\n const destinationGroupIndex =\n startOfGroupIndex === 0\n ? state.tabbableGroups.length - 1\n : startOfGroupIndex - 1;\n\n const destinationGroup = state.tabbableGroups[destinationGroupIndex];\n destinationNode = destinationGroup.lastTabbableNode;\n }\n } else {\n // FORWARD\n\n // is the target the last tabbable node in a group?\n let lastOfGroupIndex = findIndex(\n state.tabbableGroups,\n ({ lastTabbableNode }) => target === lastTabbableNode\n );\n\n if (\n lastOfGroupIndex < 0 &&\n state.tabbableGroups[containerIndex].container === target\n ) {\n // an exception case where the target is the container itself, in which\n // case, we should handle tab as if focus were on the container's\n // last tabbable node, and go to the first tabbable node of the FIRST group\n lastOfGroupIndex = containerIndex;\n }\n\n if (lastOfGroupIndex >= 0) {\n // YES: then tab should go to the first tabbable node in the next\n // group (and wrap around to the first tabbable node of the FIRST\n // group if it's the last tabbable node of the LAST group)\n const destinationGroupIndex =\n lastOfGroupIndex === state.tabbableGroups.length - 1\n ? 0\n : lastOfGroupIndex + 1;\n\n const destinationGroup = state.tabbableGroups[destinationGroupIndex];\n destinationNode = destinationGroup.firstTabbableNode;\n }\n }\n } else {\n // NOTE: the fallbackFocus option does not support returning false to opt-out\n destinationNode = getNodeForOption('fallbackFocus');\n }\n\n if (destinationNode) {\n e.preventDefault();\n tryFocus(destinationNode);\n }\n // else, let the browser take care of [shift+]tab and move the focus\n };\n\n const checkKey = function (e) {\n if (\n isEscapeEvent(e) &&\n valueOrHandler(config.escapeDeactivates, e) !== false\n ) {\n e.preventDefault();\n trap.deactivate();\n return;\n }\n\n if (isTabEvent(e)) {\n checkTab(e);\n return;\n }\n };\n\n const checkClick = function (e) {\n if (valueOrHandler(config.clickOutsideDeactivates, e)) {\n return;\n }\n\n const target = getActualTarget(e);\n\n if (containersContain(target)) {\n return;\n }\n\n if (valueOrHandler(config.allowOutsideClick, e)) {\n return;\n }\n\n e.preventDefault();\n e.stopImmediatePropagation();\n };\n\n //\n // EVENT LISTENERS\n //\n\n const addListeners = function () {\n if (!state.active) {\n return;\n }\n\n // There can be only one listening focus trap at a time\n activeFocusTraps.activateTrap(trap);\n\n // Delay ensures that the focused element doesn't capture the event\n // that caused the focus trap activation.\n state.delayInitialFocusTimer = config.delayInitialFocus\n ? delay(function () {\n tryFocus(getInitialFocusNode());\n })\n : tryFocus(getInitialFocusNode());\n\n doc.addEventListener('focusin', checkFocusIn, true);\n doc.addEventListener('mousedown', checkPointerDown, {\n capture: true,\n passive: false,\n });\n doc.addEventListener('touchstart', checkPointerDown, {\n capture: true,\n passive: false,\n });\n doc.addEventListener('click', checkClick, {\n capture: true,\n passive: false,\n });\n doc.addEventListener('keydown', checkKey, {\n capture: true,\n passive: false,\n });\n\n return trap;\n };\n\n const removeListeners = function () {\n if (!state.active) {\n return;\n }\n\n doc.removeEventListener('focusin', checkFocusIn, true);\n doc.removeEventListener('mousedown', checkPointerDown, true);\n doc.removeEventListener('touchstart', checkPointerDown, true);\n doc.removeEventListener('click', checkClick, true);\n doc.removeEventListener('keydown', checkKey, true);\n\n return trap;\n };\n\n //\n // TRAP DEFINITION\n //\n\n trap = {\n activate(activateOptions) {\n if (state.active) {\n return this;\n }\n\n const onActivate = getOption(activateOptions, 'onActivate');\n const onPostActivate = getOption(activateOptions, 'onPostActivate');\n const checkCanFocusTrap = getOption(activateOptions, 'checkCanFocusTrap');\n\n if (!checkCanFocusTrap) {\n updateTabbableNodes();\n }\n\n state.active = true;\n state.paused = false;\n state.nodeFocusedBeforeActivation = doc.activeElement;\n\n if (onActivate) {\n onActivate();\n }\n\n const finishActivation = () => {\n if (checkCanFocusTrap) {\n updateTabbableNodes();\n }\n addListeners();\n if (onPostActivate) {\n onPostActivate();\n }\n };\n\n if (checkCanFocusTrap) {\n checkCanFocusTrap(state.containers.concat()).then(\n finishActivation,\n finishActivation\n );\n return this;\n }\n\n finishActivation();\n return this;\n },\n\n deactivate(deactivateOptions) {\n if (!state.active) {\n return this;\n }\n\n clearTimeout(state.delayInitialFocusTimer); // noop if undefined\n state.delayInitialFocusTimer = undefined;\n\n removeListeners();\n state.active = false;\n state.paused = false;\n\n activeFocusTraps.deactivateTrap(trap);\n\n const onDeactivate = getOption(deactivateOptions, 'onDeactivate');\n const onPostDeactivate = getOption(deactivateOptions, 'onPostDeactivate');\n const checkCanReturnFocus = getOption(\n deactivateOptions,\n 'checkCanReturnFocus'\n );\n\n if (onDeactivate) {\n onDeactivate();\n }\n\n const returnFocus = getOption(\n deactivateOptions,\n 'returnFocus',\n 'returnFocusOnDeactivate'\n );\n\n const finishDeactivation = () => {\n delay(() => {\n if (returnFocus) {\n tryFocus(getReturnFocusNode(state.nodeFocusedBeforeActivation));\n }\n if (onPostDeactivate) {\n onPostDeactivate();\n }\n });\n };\n\n if (returnFocus && checkCanReturnFocus) {\n checkCanReturnFocus(\n getReturnFocusNode(state.nodeFocusedBeforeActivation)\n ).then(finishDeactivation, finishDeactivation);\n return this;\n }\n\n finishDeactivation();\n return this;\n },\n\n pause() {\n if (state.paused || !state.active) {\n return this;\n }\n\n state.paused = true;\n removeListeners();\n\n return this;\n },\n\n unpause() {\n if (!state.paused || !state.active) {\n return this;\n }\n\n state.paused = false;\n updateTabbableNodes();\n addListeners();\n\n return this;\n },\n\n updateContainerElements(containerElements) {\n const elementsAsArray = [].concat(containerElements).filter(Boolean);\n\n state.containers = elementsAsArray.map((element) =>\n typeof element === 'string' ? doc.querySelector(element) : element\n );\n\n if (state.active) {\n updateTabbableNodes();\n }\n\n return this;\n },\n };\n\n // initialize container elements\n trap.updateContainerElements(elements);\n\n return trap;\n};\n\nexport { createFocusTrap };\n"],"names":["activeFocusTraps","trapQueue","activateTrap","trap","length","activeTrap","pause","trapIndex","indexOf","push","splice","deactivateTrap","unpause","isSelectableInput","node","tagName","toLowerCase","select","isEscapeEvent","e","key","keyCode","isTabEvent","delay","fn","setTimeout","findIndex","arr","idx","every","value","i","valueOrHandler","params","getActualTarget","event","target","shadowRoot","composedPath","createFocusTrap","elements","userOptions","doc","document","config","returnFocusOnDeactivate","escapeDeactivates","delayInitialFocus","state","containers","tabbableGroups","nodeFocusedBeforeActivation","mostRecentlyFocusedNode","active","paused","delayInitialFocusTimer","undefined","getOption","configOverrideOptions","optionName","configOptionName","containersContain","element","some","container","contains","getNodeForOption","optionValue","Error","querySelector","getInitialFocusNode","activeElement","firstTabbableGroup","firstTabbableNode","updateTabbableNodes","map","tabbableNodes","tabbable","lastTabbableNode","filter","group","tryFocus","focus","preventScroll","getReturnFocusNode","previousActiveElement","checkPointerDown","clickOutsideDeactivates","deactivate","returnFocus","isFocusable","allowOutsideClick","preventDefault","checkFocusIn","targetContained","Document","stopImmediatePropagation","checkTab","destinationNode","containerIndex","shiftKey","startOfGroupIndex","destinationGroupIndex","destinationGroup","lastOfGroupIndex","checkKey","checkClick","addListeners","addEventListener","capture","passive","removeListeners","removeEventListener","activate","activateOptions","onActivate","onPostActivate","checkCanFocusTrap","finishActivation","concat","then","deactivateOptions","clearTimeout","onDeactivate","onPostDeactivate","checkCanReturnFocus","finishDeactivation","updateContainerElements","containerElements","elementsAsArray","Boolean"],"mappings":"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"}