focus-trap 6.2.1 → 6.4.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.
@@ -1 +1 @@
1
- {"version":3,"file":"focus-trap.min.js","sources":["../index.js"],"sourcesContent":["import { tabbable, isFocusable } from 'tabbable';\n\nlet activeFocusDelay;\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\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 // @type {{ firstTabbableNode: HTMLElement, lastTabbableNode: HTMLElement }}\n tabbableGroups: [],\n nodeFocusedBeforeActivation: null,\n mostRecentlyFocusedNode: null,\n active: false,\n paused: false,\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 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 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.map((container) => {\n const tabbableNodes = tabbable(container);\n\n return {\n firstTabbableNode: tabbableNodes[0],\n lastTabbableNode: tabbableNodes[tabbableNodes.length - 1],\n };\n });\n };\n\n const tryFocus = function (node) {\n if (node === doc.activeElement) {\n return;\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 (config.clickOutsideDeactivates) {\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 (\n config.allowOutsideClick &&\n (typeof config.allowOutsideClick === 'boolean'\n ? config.allowOutsideClick\n : config.allowOutsideClick(e))\n ) {\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 // In Firefox when you Tab out of an iframe the Document is briefly focused.\n if (containersContain(e.target) || e.target instanceof Document) {\n return;\n }\n e.stopImmediatePropagation();\n tryFocus(state.mostRecentlyFocusedNode || getInitialFocusNode());\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 (e.shiftKey) {\n const startOfGroupIndex = state.tabbableGroups.findIndex(\n ({ firstTabbableNode }) => e.target === firstTabbableNode\n );\n\n if (startOfGroupIndex >= 0) {\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 const lastOfGroupIndex = state.tabbableGroups.findIndex(\n ({ lastTabbableNode }) => e.target === lastTabbableNode\n );\n\n if (lastOfGroupIndex >= 0) {\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\n if (destinationNode) {\n e.preventDefault();\n\n tryFocus(destinationNode);\n }\n };\n\n const checkKey = function (e) {\n if (config.escapeDeactivates !== false && isEscapeEvent(e)) {\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 (config.clickOutsideDeactivates) {\n return;\n }\n if (containersContain(e.target)) {\n return;\n }\n if (\n config.allowOutsideClick &&\n (typeof config.allowOutsideClick === 'boolean'\n ? config.allowOutsideClick\n : config.allowOutsideClick(e))\n ) {\n return;\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 activeFocusDelay = 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 updateTabbableNodes();\n\n state.active = true;\n state.paused = false;\n state.nodeFocusedBeforeActivation = doc.activeElement;\n\n const onActivate =\n activateOptions && activateOptions.onActivate\n ? activateOptions.onActivate\n : config.onActivate;\n if (onActivate) {\n onActivate();\n }\n\n addListeners();\n return this;\n },\n\n deactivate(deactivateOptions) {\n if (!state.active) {\n return this;\n }\n\n clearTimeout(activeFocusDelay);\n\n removeListeners();\n state.active = false;\n state.paused = false;\n\n activeFocusTraps.deactivateTrap(trap);\n\n const onDeactivate =\n deactivateOptions && deactivateOptions.onDeactivate !== undefined\n ? deactivateOptions.onDeactivate\n : config.onDeactivate;\n if (onDeactivate) {\n onDeactivate();\n }\n\n const returnFocus =\n deactivateOptions && deactivateOptions.returnFocus !== undefined\n ? deactivateOptions.returnFocus\n : config.returnFocusOnDeactivate;\n\n if (returnFocus) {\n delay(function () {\n tryFocus(getReturnFocusNode(state.nodeFocusedBeforeActivation));\n });\n }\n\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":["activeFocusDelay","trapQueue","activeFocusTraps","activateTrap","trap","length","activeTrap","pause","trapIndex","indexOf","splice","push","deactivateTrap","unpause","delay","fn","setTimeout","elements","userOptions","doc","document","config","returnFocusOnDeactivate","escapeDeactivates","delayInitialFocus","state","containers","tabbableGroups","nodeFocusedBeforeActivation","mostRecentlyFocusedNode","active","paused","containersContain","element","some","container","contains","getNodeForOption","optionName","optionValue","node","querySelector","Error","getInitialFocusNode","activeElement","firstTabbableGroup","firstTabbableNode","updateTabbableNodes","map","tabbableNodes","tabbable","lastTabbableNode","tryFocus","focus","preventScroll","tagName","toLowerCase","select","isSelectableInput","checkPointerDown","e","target","clickOutsideDeactivates","deactivate","returnFocus","isFocusable","allowOutsideClick","preventDefault","checkFocusIn","Document","stopImmediatePropagation","checkKey","key","keyCode","isEscapeEvent","isTabEvent","destinationNode","shiftKey","startOfGroupIndex","findIndex","destinationGroupIndex","lastOfGroupIndex","checkTab","checkClick","addListeners","addEventListener","capture","passive","removeListeners","removeEventListener","activate","activateOptions","this","onActivate","deactivateOptions","clearTimeout","onDeactivate","undefined","previousActiveElement","updateContainerElements","containerElements","elementsAsArray","concat","filter","Boolean"],"mappings":"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"}
1
+ {"version":3,"file":"focus-trap.min.js","sources":["../index.js"],"sourcesContent":["import { tabbable, isFocusable } from 'tabbable';\n\nlet activeFocusDelay;\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\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 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 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 === doc.activeElement) {\n return;\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 (config.escapeDeactivates !== false && isEscapeEvent(e)) {\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 activeFocusDelay = 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 updateTabbableNodes();\n\n state.active = true;\n state.paused = false;\n state.nodeFocusedBeforeActivation = doc.activeElement;\n\n const onActivate =\n activateOptions && activateOptions.onActivate\n ? activateOptions.onActivate\n : config.onActivate;\n if (onActivate) {\n onActivate();\n }\n\n addListeners();\n return this;\n },\n\n deactivate(deactivateOptions) {\n if (!state.active) {\n return this;\n }\n\n clearTimeout(activeFocusDelay);\n\n removeListeners();\n state.active = false;\n state.paused = false;\n\n activeFocusTraps.deactivateTrap(trap);\n\n const onDeactivate =\n deactivateOptions && deactivateOptions.onDeactivate !== undefined\n ? deactivateOptions.onDeactivate\n : config.onDeactivate;\n if (onDeactivate) {\n onDeactivate();\n }\n\n const returnFocus =\n deactivateOptions && deactivateOptions.returnFocus !== undefined\n ? deactivateOptions.returnFocus\n : config.returnFocusOnDeactivate;\n\n if (returnFocus) {\n delay(function () {\n tryFocus(getReturnFocusNode(state.nodeFocusedBeforeActivation));\n });\n }\n\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":["activeFocusDelay","trapQueue","activeFocusTraps","activateTrap","trap","length","activeTrap","pause","trapIndex","indexOf","splice","push","deactivateTrap","unpause","delay","fn","setTimeout","findIndex","arr","idx","every","value","i","valueOrHandler","params","elements","userOptions","doc","document","config","returnFocusOnDeactivate","escapeDeactivates","delayInitialFocus","state","containers","tabbableGroups","nodeFocusedBeforeActivation","mostRecentlyFocusedNode","active","paused","containersContain","element","some","container","contains","getNodeForOption","optionName","optionValue","node","querySelector","Error","getInitialFocusNode","activeElement","firstTabbableGroup","firstTabbableNode","updateTabbableNodes","map","tabbableNodes","tabbable","lastTabbableNode","filter","group","tryFocus","focus","preventScroll","tagName","toLowerCase","select","isSelectableInput","checkPointerDown","e","target","clickOutsideDeactivates","deactivate","returnFocus","isFocusable","allowOutsideClick","preventDefault","checkFocusIn","targetContained","Document","stopImmediatePropagation","checkKey","key","keyCode","isEscapeEvent","isTabEvent","destinationNode","containerIndex","shiftKey","startOfGroupIndex","destinationGroupIndex","lastOfGroupIndex","checkTab","checkClick","addListeners","addEventListener","capture","passive","removeListeners","removeEventListener","activate","activateOptions","this","onActivate","deactivateOptions","clearTimeout","onDeactivate","undefined","previousActiveElement","updateContainerElements","containerElements","elementsAsArray","concat","Boolean"],"mappings":";;;;wEAEIA,8WAEJ,IACQC,EADFC,GACED,EAAY,GACX,CACLE,sBAAaC,MACPH,EAAUI,OAAS,EAAG,KAClBC,EAAaL,EAAUA,EAAUI,OAAS,GAC5CC,IAAeF,GACjBE,EAAWC,YAITC,EAAYP,EAAUQ,QAAQL,IACjB,IAAfI,GAIFP,EAAUS,OAAOF,EAAW,GAH5BP,EAAUU,KAAKP,IAQnBQ,wBAAeR,OACPI,EAAYP,EAAUQ,QAAQL,IACjB,IAAfI,GACFP,EAAUS,OAAOF,EAAW,GAG1BP,EAAUI,OAAS,GACrBJ,EAAUA,EAAUI,OAAS,GAAGQ,aAsBlCC,EAAQ,SAAUC,UACfC,WAAWD,EAAI,IAKlBE,EAAY,SAAUC,EAAKH,OAC3BI,GAAO,SAEXD,EAAIE,OAAM,SAAUC,EAAOC,UACrBP,EAAGM,KACLF,EAAMG,GACC,MAMJH,GAUHI,EAAiB,SAAUF,8BAAUG,mCAAAA,0BACjB,mBAAVH,EAAuBA,eAASG,GAAUH,2BAGlC,SAAUI,EAAUC,OA6BtCtB,EA5BEuB,EAAMC,SAENC,mWACJC,yBAAyB,EACzBC,mBAAmB,EACnBC,mBAAmB,GAChBN,GAGCO,EAAQ,CAEZC,WAAY,GASZC,eAAgB,GAEhBC,4BAA6B,KAC7BC,wBAAyB,KACzBC,QAAQ,EACRC,QAAQ,GAKJC,EAAoB,SAAUC,UAC3BR,EAAMC,WAAWQ,MAAK,SAACC,UAAcA,EAAUC,SAASH,OAG3DI,EAAmB,SAAUC,OAC3BC,EAAclB,EAAOiB,OACtBC,SACI,SAGLC,EAAOD,KAEgB,iBAAhBA,KACTC,EAAOrB,EAAIsB,cAAcF,UAEjB,IAAIG,iBAAWJ,mCAIE,mBAAhBC,KACTC,EAAOD,WAEC,IAAIG,iBAAWJ,qCAIlBE,GAGHG,EAAsB,eACtBH,KAEqC,OAArCH,EAAiB,gBACnBG,EAAOH,EAAiB,qBACnB,GAAIL,EAAkBb,EAAIyB,eAC/BJ,EAAOrB,EAAIyB,kBACN,KACCC,EAAqBpB,EAAME,eAAe,GAGhDa,EADEK,GAAsBA,EAAmBC,mBACfT,EAAiB,qBAG1CG,QACG,IAAIE,MACR,uEAIGF,GAGHO,EAAsB,cAC1BtB,EAAME,eAAiBF,EAAMC,WAC1BsB,KAAI,SAACb,OACEc,EAAgBC,WAASf,MAE3Bc,EAAcpD,OAAS,QAClB,CACLsC,UAAAA,EACAW,kBAAmBG,EAAc,GACjCE,iBAAkBF,EAAcA,EAAcpD,OAAS,OAM5DuD,QAAO,SAACC,WAAYA,KAIrB5B,EAAME,eAAe9B,QAAU,IAC9BwC,EAAiB,uBAEZ,IAAIK,MACR,wGAKAY,EAAW,SAAXA,EAAqBd,GACrBA,IAASrB,EAAIyB,gBAGZJ,GAASA,EAAKe,OAKnBf,EAAKe,MAAM,CAAEC,gBAAiBnC,EAAOmC,gBACrC/B,EAAMI,wBAA0BW,EAzKV,SAAUA,UAEhCA,EAAKiB,SAC0B,UAA/BjB,EAAKiB,QAAQC,eACU,mBAAhBlB,EAAKmB,OAuKRC,CAAkBpB,IACpBA,EAAKmB,UARLL,EAASX,OAoBPkB,EAAmB,SAAUC,GAC7B9B,EAAkB8B,EAAEC,UAKpBhD,EAAeM,EAAO2C,wBAAyBF,GAEjDlE,EAAKqE,WAAW,CAYdC,YAAa7C,EAAOC,0BAA4B6C,cAAYL,EAAEC,UAQ9DhD,EAAeM,EAAO+C,kBAAmBN,IAM7CA,EAAEO,mBAIEC,EAAe,SAAUR,OACvBS,EAAkBvC,EAAkB8B,EAAEC,QAExCQ,GAAmBT,EAAEC,kBAAkBS,SACrCD,IACF9C,EAAMI,wBAA0BiC,EAAEC,SAIpCD,EAAEW,2BACFnB,EAAS7B,EAAMI,yBAA2Bc,OA2GxC+B,EAAW,SAAUZ,OACQ,IAA7BzC,EAAOE,mBA5UO,SAAUuC,SACb,WAAVA,EAAEa,KAA8B,QAAVb,EAAEa,KAA+B,KAAdb,EAAEc,QA2UNC,CAAcf,UACtDA,EAAEO,sBACFzE,EAAKqE,cA1UQ,SAAUH,SACV,QAAVA,EAAEa,KAA+B,IAAdb,EAAEc,SA6UtBE,CAAWhB,IA1GA,SAAUA,GACzBf,QAEIgC,EAAkB,QAElBtD,EAAME,eAAe9B,OAAS,EAAG,KAI7BmF,EAAiBvE,EAAUgB,EAAME,gBAAgB,qBAAGQ,UAC9CC,SAAS0B,EAAEC,cAGnBiB,EAAiB,EAKjBD,EAFEjB,EAAEmB,SAGFxD,EAAME,eAAeF,EAAME,eAAe9B,OAAS,GAChDsD,iBAGa1B,EAAME,eAAe,GAAGmB,uBAEvC,GAAIgB,EAAEmB,SAAU,KAIjBC,EAAoBzE,EACtBgB,EAAME,gBACN,gBAAGmB,IAAAA,yBAAwBgB,EAAEC,SAAWjB,QAIxCoC,EAAoB,GACpBzD,EAAME,eAAeqD,GAAgB7C,YAAc2B,EAAEC,SAKrDmB,EAAoBF,GAGlBE,GAAqB,EAAG,KAIpBC,EACkB,IAAtBD,EACIzD,EAAME,eAAe9B,OAAS,EAC9BqF,EAAoB,EAG1BH,EADyBtD,EAAME,eAAewD,GACXhC,sBAEhC,KAIDiC,EAAmB3E,EACrBgB,EAAME,gBACN,gBAAGwB,IAAAA,wBAAuBW,EAAEC,SAAWZ,QAIvCiC,EAAmB,GACnB3D,EAAME,eAAeqD,GAAgB7C,YAAc2B,EAAEC,SAKrDqB,EAAmBJ,GAGjBI,GAAoB,EAAG,KAInBD,EACJC,IAAqB3D,EAAME,eAAe9B,OAAS,EAC/C,EACAuF,EAAmB,EAGzBL,EADyBtD,EAAME,eAAewD,GACXrC,yBAIvCiC,EAAkB1C,EAAiB,iBAGjC0C,IACFjB,EAAEO,iBACFf,EAASyB,IAaTM,CAASvB,IAKPwB,EAAa,SAAUxB,GACvB/C,EAAeM,EAAO2C,wBAAyBF,IAI/C9B,EAAkB8B,EAAEC,SAIpBhD,EAAeM,EAAO+C,kBAAmBN,KAI7CA,EAAEO,iBACFP,EAAEW,6BAOEc,EAAe,cACd9D,EAAMK,cAKXpC,EAAiBC,aAAaC,GAI9BJ,EAAmB6B,EAAOG,kBACtBlB,GAAM,WACJgD,EAASX,QAEXW,EAASX,KAEbxB,EAAIqE,iBAAiB,UAAWlB,GAAc,GAC9CnD,EAAIqE,iBAAiB,YAAa3B,EAAkB,CAClD4B,SAAS,EACTC,SAAS,IAEXvE,EAAIqE,iBAAiB,aAAc3B,EAAkB,CACnD4B,SAAS,EACTC,SAAS,IAEXvE,EAAIqE,iBAAiB,QAASF,EAAY,CACxCG,SAAS,EACTC,SAAS,IAEXvE,EAAIqE,iBAAiB,UAAWd,EAAU,CACxCe,SAAS,EACTC,SAAS,IAGJ9F,GAGH+F,EAAkB,cACjBlE,EAAMK,cAIXX,EAAIyE,oBAAoB,UAAWtB,GAAc,GACjDnD,EAAIyE,oBAAoB,YAAa/B,GAAkB,GACvD1C,EAAIyE,oBAAoB,aAAc/B,GAAkB,GACxD1C,EAAIyE,oBAAoB,QAASN,GAAY,GAC7CnE,EAAIyE,oBAAoB,UAAWlB,GAAU,GAEtC9E,UAOTA,EAAO,CACLiG,kBAASC,MACHrE,EAAMK,cACDiE,KAGThD,IAEAtB,EAAMK,QAAS,EACfL,EAAMM,QAAS,EACfN,EAAMG,4BAA8BT,EAAIyB,kBAElCoD,EACJF,GAAmBA,EAAgBE,WAC/BF,EAAgBE,WAChB3E,EAAO2E,kBACTA,GACFA,IAGFT,IACOQ,MAGT9B,oBAAWgC,OACJxE,EAAMK,cACFiE,KAGTG,aAAa1G,GAEbmG,IACAlE,EAAMK,QAAS,EACfL,EAAMM,QAAS,EAEfrC,EAAiBU,eAAeR,OAE1BuG,EACJF,QAAwDG,IAAnCH,EAAkBE,aACnCF,EAAkBE,aAClB9E,EAAO8E,oBACTA,GACFA,KAIAF,QAAuDG,IAAlCH,EAAkB/B,YACnC+B,EAAkB/B,YAClB7C,EAAOC,0BAGXhB,GAAM,WA/Se,IAAU+F,EAgT7B/C,GAhT6B+C,EAgTD5E,EAAMG,4BA/S3BS,EAAiB,mBAETgE,OAiTZN,MAGThG,wBACM0B,EAAMM,SAAWN,EAAMK,SAI3BL,EAAMM,QAAS,EACf4D,KAJSI,MASX1F,0BACOoB,EAAMM,QAAWN,EAAMK,QAI5BL,EAAMM,QAAS,EACfgB,IACAwC,IAEOQ,MAPEA,MAUXO,iCAAwBC,OAChBC,EAAkB,GAAGC,OAAOF,GAAmBnD,OAAOsD,gBAE5DjF,EAAMC,WAAa8E,EAAgBxD,KAAI,SAACf,SACnB,iBAAZA,EAAuBd,EAAIsB,cAAcR,GAAWA,KAGzDR,EAAMK,QACRiB,IAGKgD,QAKNO,wBAAwBrF,GAEtBrB"}
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * focus-trap 6.2.1
2
+ * focus-trap 6.4.0
3
3
  * @license MIT, https://github.com/focus-trap/focus-trap/blob/master/LICENSE
4
4
  */
5
5
  (function (global, factory) {
@@ -114,6 +114,37 @@
114
114
 
115
115
  var delay = function delay(fn) {
116
116
  return setTimeout(fn, 0);
117
+ }; // Array.find/findIndex() are not supported on IE; this replicates enough
118
+ // of Array.findIndex() for our needs
119
+
120
+
121
+ var findIndex = function findIndex(arr, fn) {
122
+ var idx = -1;
123
+ arr.every(function (value, i) {
124
+ if (fn(value)) {
125
+ idx = i;
126
+ return false; // break
127
+ }
128
+
129
+ return true; // next
130
+ });
131
+ return idx;
132
+ };
133
+ /**
134
+ * Get an option's value when it could be a plain value, or a handler that provides
135
+ * the value.
136
+ * @param {*} value Option's value to check.
137
+ * @param {...*} [params] Any parameters to pass to the handler, if `value` is a function.
138
+ * @returns {*} The `value`, or the handler's returned value.
139
+ */
140
+
141
+
142
+ var valueOrHandler = function valueOrHandler(value) {
143
+ for (var _len = arguments.length, params = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
144
+ params[_key - 1] = arguments[_key];
145
+ }
146
+
147
+ return typeof value === 'function' ? value.apply(void 0, params) : value;
117
148
  };
118
149
 
119
150
  var createFocusTrap = function createFocusTrap(elements, userOptions) {
@@ -128,7 +159,13 @@
128
159
  var state = {
129
160
  // @type {Array<HTMLElement>}
130
161
  containers: [],
131
- // @type {{ firstTabbableNode: HTMLElement, lastTabbableNode: HTMLElement }}
162
+ // list of objects identifying the first and last tabbable nodes in all containers/groups in
163
+ // the trap
164
+ // NOTE: it's possible that a group has no tabbable nodes if nodes get removed while the trap
165
+ // is active, but the trap should never get to a state where there isn't at least one group
166
+ // with at least one tabbable node in it (that would lead to an error condition that would
167
+ // result in an error being thrown)
168
+ // @type {Array<{ container: HTMLElement, firstTabbableNode: HTMLElement|null, lastTabbableNode: HTMLElement|null }>}
132
169
  tabbableGroups: [],
133
170
  nodeFocusedBeforeActivation: null,
134
171
  mostRecentlyFocusedNode: null,
@@ -194,11 +231,24 @@
194
231
  var updateTabbableNodes = function updateTabbableNodes() {
195
232
  state.tabbableGroups = state.containers.map(function (container) {
196
233
  var tabbableNodes = tabbable.tabbable(container);
197
- return {
198
- firstTabbableNode: tabbableNodes[0],
199
- lastTabbableNode: tabbableNodes[tabbableNodes.length - 1]
200
- };
201
- });
234
+
235
+ if (tabbableNodes.length > 0) {
236
+ return {
237
+ container: container,
238
+ firstTabbableNode: tabbableNodes[0],
239
+ lastTabbableNode: tabbableNodes[tabbableNodes.length - 1]
240
+ };
241
+ }
242
+
243
+ return undefined;
244
+ }).filter(function (group) {
245
+ return !!group;
246
+ }); // remove groups with no tabbable nodes
247
+ // throw if no groups have tabbable nodes and we don't have a fallback focus node either
248
+
249
+ if (state.tabbableGroups.length <= 0 && !getNodeForOption('fallbackFocus')) {
250
+ throw new Error('Your focus-trap must have at least one container with at least one tabbable node in it at all times');
251
+ }
202
252
  };
203
253
 
204
254
  var tryFocus = function tryFocus(node) {
@@ -234,7 +284,7 @@
234
284
  return;
235
285
  }
236
286
 
237
- if (config.clickOutsideDeactivates) {
287
+ if (valueOrHandler(config.clickOutsideDeactivates, e)) {
238
288
  // immediately deactivate the trap
239
289
  trap.deactivate({
240
290
  // if, on deactivation, we should return focus to the node originally-focused
@@ -256,7 +306,7 @@
256
306
  // then on mobile they will be blocked anyways if `touchstart` is blocked.)
257
307
 
258
308
 
259
- if (config.allowOutsideClick && (typeof config.allowOutsideClick === 'boolean' ? config.allowOutsideClick : config.allowOutsideClick(e))) {
309
+ if (valueOrHandler(config.allowOutsideClick, e)) {
260
310
  // allow the click outside the trap to take place
261
311
  return;
262
312
  } // otherwise, prevent the click
@@ -267,13 +317,17 @@
267
317
 
268
318
 
269
319
  var checkFocusIn = function checkFocusIn(e) {
270
- // In Firefox when you Tab out of an iframe the Document is briefly focused.
271
- if (containersContain(e.target) || e.target instanceof Document) {
272
- return;
273
- }
320
+ var targetContained = containersContain(e.target); // In Firefox when you Tab out of an iframe the Document is briefly focused.
274
321
 
275
- e.stopImmediatePropagation();
276
- tryFocus(state.mostRecentlyFocusedNode || getInitialFocusNode());
322
+ if (targetContained || e.target instanceof Document) {
323
+ if (targetContained) {
324
+ state.mostRecentlyFocusedNode = e.target;
325
+ }
326
+ } else {
327
+ // escaped! pull it back in to where it just left
328
+ e.stopImmediatePropagation();
329
+ tryFocus(state.mostRecentlyFocusedNode || getInitialFocusNode());
330
+ }
277
331
  }; // Hijack Tab events on the first and last focusable nodes of the trap,
278
332
  // in order to prevent focus from escaping. If it escapes for even a
279
333
  // moment it can end up scrolling the page and causing confusion so we
@@ -284,35 +338,82 @@
284
338
  updateTabbableNodes();
285
339
  var destinationNode = null;
286
340
 
287
- if (e.shiftKey) {
288
- var startOfGroupIndex = state.tabbableGroups.findIndex(function (_ref) {
289
- var firstTabbableNode = _ref.firstTabbableNode;
290
- return e.target === firstTabbableNode;
341
+ if (state.tabbableGroups.length > 0) {
342
+ // make sure the target is actually contained in a group
343
+ // NOTE: the target may also be the container itself if it's tabbable
344
+ // with tabIndex='-1' and was given initial focus
345
+ var containerIndex = findIndex(state.tabbableGroups, function (_ref) {
346
+ var container = _ref.container;
347
+ return container.contains(e.target);
291
348
  });
292
349
 
293
- if (startOfGroupIndex >= 0) {
294
- var destinationGroupIndex = startOfGroupIndex === 0 ? state.tabbableGroups.length - 1 : startOfGroupIndex - 1;
295
- var destinationGroup = state.tabbableGroups[destinationGroupIndex];
296
- destinationNode = destinationGroup.lastTabbableNode;
297
- }
298
- } else {
299
- var lastOfGroupIndex = state.tabbableGroups.findIndex(function (_ref2) {
300
- var lastTabbableNode = _ref2.lastTabbableNode;
301
- return e.target === lastTabbableNode;
302
- });
350
+ if (containerIndex < 0) {
351
+ // target not found in any group: quite possible focus has escaped the trap,
352
+ // so bring it back in to...
353
+ if (e.shiftKey) {
354
+ // ...the last node in the last group
355
+ destinationNode = state.tabbableGroups[state.tabbableGroups.length - 1].lastTabbableNode;
356
+ } else {
357
+ // ...the first node in the first group
358
+ destinationNode = state.tabbableGroups[0].firstTabbableNode;
359
+ }
360
+ } else if (e.shiftKey) {
361
+ // REVERSE
362
+ // is the target the first tabbable node in a group?
363
+ var startOfGroupIndex = findIndex(state.tabbableGroups, function (_ref2) {
364
+ var firstTabbableNode = _ref2.firstTabbableNode;
365
+ return e.target === firstTabbableNode;
366
+ });
367
+
368
+ if (startOfGroupIndex < 0 && state.tabbableGroups[containerIndex].container === e.target) {
369
+ // an exception case where the target is the container itself, in which
370
+ // case, we should handle shift+tab as if focus were on the container's
371
+ // first tabbable node, and go to the last tabbable node of the LAST group
372
+ startOfGroupIndex = containerIndex;
373
+ }
374
+
375
+ if (startOfGroupIndex >= 0) {
376
+ // YES: then shift+tab should go to the last tabbable node in the
377
+ // previous group (and wrap around to the last tabbable node of
378
+ // the LAST group if it's the first tabbable node of the FIRST group)
379
+ var destinationGroupIndex = startOfGroupIndex === 0 ? state.tabbableGroups.length - 1 : startOfGroupIndex - 1;
380
+ var destinationGroup = state.tabbableGroups[destinationGroupIndex];
381
+ destinationNode = destinationGroup.lastTabbableNode;
382
+ }
383
+ } else {
384
+ // FORWARD
385
+ // is the target the last tabbable node in a group?
386
+ var lastOfGroupIndex = findIndex(state.tabbableGroups, function (_ref3) {
387
+ var lastTabbableNode = _ref3.lastTabbableNode;
388
+ return e.target === lastTabbableNode;
389
+ });
390
+
391
+ if (lastOfGroupIndex < 0 && state.tabbableGroups[containerIndex].container === e.target) {
392
+ // an exception case where the target is the container itself, in which
393
+ // case, we should handle tab as if focus were on the container's
394
+ // last tabbable node, and go to the first tabbable node of the FIRST group
395
+ lastOfGroupIndex = containerIndex;
396
+ }
303
397
 
304
- if (lastOfGroupIndex >= 0) {
305
- var _destinationGroupIndex = lastOfGroupIndex === state.tabbableGroups.length - 1 ? 0 : lastOfGroupIndex + 1;
398
+ if (lastOfGroupIndex >= 0) {
399
+ // YES: then tab should go to the first tabbable node in the next
400
+ // group (and wrap around to the first tabbable node of the FIRST
401
+ // group if it's the last tabbable node of the LAST group)
402
+ var _destinationGroupIndex = lastOfGroupIndex === state.tabbableGroups.length - 1 ? 0 : lastOfGroupIndex + 1;
306
403
 
307
- var _destinationGroup = state.tabbableGroups[_destinationGroupIndex];
308
- destinationNode = _destinationGroup.firstTabbableNode;
404
+ var _destinationGroup = state.tabbableGroups[_destinationGroupIndex];
405
+ destinationNode = _destinationGroup.firstTabbableNode;
406
+ }
309
407
  }
408
+ } else {
409
+ destinationNode = getNodeForOption('fallbackFocus');
310
410
  }
311
411
 
312
412
  if (destinationNode) {
313
413
  e.preventDefault();
314
414
  tryFocus(destinationNode);
315
- }
415
+ } // else, let the browser take care of [shift+]tab and move the focus
416
+
316
417
  };
317
418
 
318
419
  var checkKey = function checkKey(e) {
@@ -329,7 +430,7 @@
329
430
  };
330
431
 
331
432
  var checkClick = function checkClick(e) {
332
- if (config.clickOutsideDeactivates) {
433
+ if (valueOrHandler(config.clickOutsideDeactivates, e)) {
333
434
  return;
334
435
  }
335
436
 
@@ -337,7 +438,7 @@
337
438
  return;
338
439
  }
339
440
 
340
- if (config.allowOutsideClick && (typeof config.allowOutsideClick === 'boolean' ? config.allowOutsideClick : config.allowOutsideClick(e))) {
441
+ if (valueOrHandler(config.allowOutsideClick, e)) {
341
442
  return;
342
443
  }
343
444
 
@@ -1 +1 @@
1
- {"version":3,"file":"focus-trap.umd.js","sources":["../index.js"],"sourcesContent":["import { tabbable, isFocusable } from 'tabbable';\n\nlet activeFocusDelay;\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\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 // @type {{ firstTabbableNode: HTMLElement, lastTabbableNode: HTMLElement }}\n tabbableGroups: [],\n nodeFocusedBeforeActivation: null,\n mostRecentlyFocusedNode: null,\n active: false,\n paused: false,\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 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 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.map((container) => {\n const tabbableNodes = tabbable(container);\n\n return {\n firstTabbableNode: tabbableNodes[0],\n lastTabbableNode: tabbableNodes[tabbableNodes.length - 1],\n };\n });\n };\n\n const tryFocus = function (node) {\n if (node === doc.activeElement) {\n return;\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 (config.clickOutsideDeactivates) {\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 (\n config.allowOutsideClick &&\n (typeof config.allowOutsideClick === 'boolean'\n ? config.allowOutsideClick\n : config.allowOutsideClick(e))\n ) {\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 // In Firefox when you Tab out of an iframe the Document is briefly focused.\n if (containersContain(e.target) || e.target instanceof Document) {\n return;\n }\n e.stopImmediatePropagation();\n tryFocus(state.mostRecentlyFocusedNode || getInitialFocusNode());\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 (e.shiftKey) {\n const startOfGroupIndex = state.tabbableGroups.findIndex(\n ({ firstTabbableNode }) => e.target === firstTabbableNode\n );\n\n if (startOfGroupIndex >= 0) {\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 const lastOfGroupIndex = state.tabbableGroups.findIndex(\n ({ lastTabbableNode }) => e.target === lastTabbableNode\n );\n\n if (lastOfGroupIndex >= 0) {\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\n if (destinationNode) {\n e.preventDefault();\n\n tryFocus(destinationNode);\n }\n };\n\n const checkKey = function (e) {\n if (config.escapeDeactivates !== false && isEscapeEvent(e)) {\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 (config.clickOutsideDeactivates) {\n return;\n }\n if (containersContain(e.target)) {\n return;\n }\n if (\n config.allowOutsideClick &&\n (typeof config.allowOutsideClick === 'boolean'\n ? config.allowOutsideClick\n : config.allowOutsideClick(e))\n ) {\n return;\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 activeFocusDelay = 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 updateTabbableNodes();\n\n state.active = true;\n state.paused = false;\n state.nodeFocusedBeforeActivation = doc.activeElement;\n\n const onActivate =\n activateOptions && activateOptions.onActivate\n ? activateOptions.onActivate\n : config.onActivate;\n if (onActivate) {\n onActivate();\n }\n\n addListeners();\n return this;\n },\n\n deactivate(deactivateOptions) {\n if (!state.active) {\n return this;\n }\n\n clearTimeout(activeFocusDelay);\n\n removeListeners();\n state.active = false;\n state.paused = false;\n\n activeFocusTraps.deactivateTrap(trap);\n\n const onDeactivate =\n deactivateOptions && deactivateOptions.onDeactivate !== undefined\n ? deactivateOptions.onDeactivate\n : config.onDeactivate;\n if (onDeactivate) {\n onDeactivate();\n }\n\n const returnFocus =\n deactivateOptions && deactivateOptions.returnFocus !== undefined\n ? deactivateOptions.returnFocus\n : config.returnFocusOnDeactivate;\n\n if (returnFocus) {\n delay(function () {\n tryFocus(getReturnFocusNode(state.nodeFocusedBeforeActivation));\n });\n }\n\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":["activeFocusDelay","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","createFocusTrap","elements","userOptions","doc","document","config","returnFocusOnDeactivate","escapeDeactivates","delayInitialFocus","state","containers","tabbableGroups","nodeFocusedBeforeActivation","mostRecentlyFocusedNode","active","paused","containersContain","element","some","container","contains","getNodeForOption","optionName","optionValue","querySelector","Error","getInitialFocusNode","activeElement","firstTabbableGroup","firstTabbableNode","updateTabbableNodes","map","tabbableNodes","tabbable","lastTabbableNode","tryFocus","focus","preventScroll","getReturnFocusNode","previousActiveElement","checkPointerDown","target","clickOutsideDeactivates","deactivate","returnFocus","isFocusable","allowOutsideClick","preventDefault","checkFocusIn","Document","stopImmediatePropagation","checkTab","destinationNode","shiftKey","startOfGroupIndex","findIndex","destinationGroupIndex","destinationGroup","lastOfGroupIndex","checkKey","checkClick","addListeners","addEventListener","capture","passive","removeListeners","removeEventListener","activate","activateOptions","onActivate","deactivateOptions","clearTimeout","onDeactivate","undefined","updateContainerElements","containerElements","elementsAsArray","concat","filter","Boolean"],"mappings":"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"}
1
+ {"version":3,"file":"focus-trap.umd.js","sources":["../index.js"],"sourcesContent":["import { tabbable, isFocusable } from 'tabbable';\n\nlet activeFocusDelay;\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\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 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 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 === doc.activeElement) {\n return;\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 (config.escapeDeactivates !== false && isEscapeEvent(e)) {\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 activeFocusDelay = 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 updateTabbableNodes();\n\n state.active = true;\n state.paused = false;\n state.nodeFocusedBeforeActivation = doc.activeElement;\n\n const onActivate =\n activateOptions && activateOptions.onActivate\n ? activateOptions.onActivate\n : config.onActivate;\n if (onActivate) {\n onActivate();\n }\n\n addListeners();\n return this;\n },\n\n deactivate(deactivateOptions) {\n if (!state.active) {\n return this;\n }\n\n clearTimeout(activeFocusDelay);\n\n removeListeners();\n state.active = false;\n state.paused = false;\n\n activeFocusTraps.deactivateTrap(trap);\n\n const onDeactivate =\n deactivateOptions && deactivateOptions.onDeactivate !== undefined\n ? deactivateOptions.onDeactivate\n : config.onDeactivate;\n if (onDeactivate) {\n onDeactivate();\n }\n\n const returnFocus =\n deactivateOptions && deactivateOptions.returnFocus !== undefined\n ? deactivateOptions.returnFocus\n : config.returnFocusOnDeactivate;\n\n if (returnFocus) {\n delay(function () {\n tryFocus(getReturnFocusNode(state.nodeFocusedBeforeActivation));\n });\n }\n\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":["activeFocusDelay","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","containersContain","element","some","container","contains","getNodeForOption","optionName","optionValue","querySelector","Error","getInitialFocusNode","activeElement","firstTabbableGroup","firstTabbableNode","updateTabbableNodes","map","tabbableNodes","tabbable","lastTabbableNode","undefined","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","deactivateOptions","clearTimeout","onDeactivate","updateContainerElements","containerElements","elementsAsArray","concat","Boolean"],"mappings":"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"}
@@ -1,6 +1,6 @@
1
1
  /*!
2
- * focus-trap 6.2.1
2
+ * focus-trap 6.4.0
3
3
  * @license MIT, https://github.com/focus-trap/focus-trap/blob/master/LICENSE
4
4
  */
5
- !function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("tabbable")):"function"==typeof define&&define.amd?define(["exports","tabbable"],t):(e="undefined"!=typeof globalThis?globalThis:e||self,function(){var n=e.focusTrap,a=e.focusTrap={};t(a,e.tabbable),a.noConflict=function(){return e.focusTrap=n,a}}())}(this,(function(e,t){"use strict";function n(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function a(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,a)}return n}var r,o,i=(o=[],{activateTrap:function(e){if(o.length>0){var t=o[o.length-1];t!==e&&t.pause()}var n=o.indexOf(e);-1===n||o.splice(n,1),o.push(e)},deactivateTrap:function(e){var t=o.indexOf(e);-1!==t&&o.splice(t,1),o.length>0&&o[o.length-1].unpause()}}),c=function(e){return setTimeout(e,0)};e.createFocusTrap=function(e,o){var u,s=document,l=function(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?a(Object(r),!0).forEach((function(t){n(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):a(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}({returnFocusOnDeactivate:!0,escapeDeactivates:!0,delayInitialFocus:!0},o),f={containers:[],tabbableGroups:[],nodeFocusedBeforeActivation:null,mostRecentlyFocusedNode:null,active:!1,paused:!1},v=function(e){return f.containers.some((function(t){return t.contains(e)}))},d=function(e){var t=l[e];if(!t)return null;var n=t;if("string"==typeof t&&!(n=s.querySelector(t)))throw new Error("`".concat(e,"` refers to no known node"));if("function"==typeof t&&!(n=t()))throw new Error("`".concat(e,"` did not return a node"));return n},b=function(){var e;if(null!==d("initialFocus"))e=d("initialFocus");else if(v(s.activeElement))e=s.activeElement;else{var t=f.tabbableGroups[0];e=t&&t.firstTabbableNode||d("fallbackFocus")}if(!e)throw new Error("Your focus-trap needs to have at least one focusable element");return e},p=function(){f.tabbableGroups=f.containers.map((function(e){var n=t.tabbable(e);return{firstTabbableNode:n[0],lastTabbableNode:n[n.length-1]}}))},y=function e(t){t!==s.activeElement&&(t&&t.focus?(t.focus({preventScroll:!!l.preventScroll}),f.mostRecentlyFocusedNode=t,function(e){return e.tagName&&"input"===e.tagName.toLowerCase()&&"function"==typeof e.select}(t)&&t.select()):e(b()))},m=function(e){v(e.target)||(l.clickOutsideDeactivates?u.deactivate({returnFocus:l.returnFocusOnDeactivate&&!t.isFocusable(e.target)}):l.allowOutsideClick&&("boolean"==typeof l.allowOutsideClick?l.allowOutsideClick:l.allowOutsideClick(e))||e.preventDefault())},O=function(e){v(e.target)||e.target instanceof Document||(e.stopImmediatePropagation(),y(f.mostRecentlyFocusedNode||b()))},g=function(e){if(!1!==l.escapeDeactivates&&function(e){return"Escape"===e.key||"Esc"===e.key||27===e.keyCode}(e))return e.preventDefault(),void u.deactivate();(function(e){return"Tab"===e.key||9===e.keyCode})(e)&&function(e){p();var t=null;if(e.shiftKey){var n=f.tabbableGroups.findIndex((function(t){var n=t.firstTabbableNode;return e.target===n}));if(n>=0){var a=0===n?f.tabbableGroups.length-1:n-1;t=f.tabbableGroups[a].lastTabbableNode}}else{var r=f.tabbableGroups.findIndex((function(t){var n=t.lastTabbableNode;return e.target===n}));if(r>=0){var o=r===f.tabbableGroups.length-1?0:r+1;t=f.tabbableGroups[o].firstTabbableNode}}t&&(e.preventDefault(),y(t))}(e)},h=function(e){l.clickOutsideDeactivates||v(e.target)||l.allowOutsideClick&&("boolean"==typeof l.allowOutsideClick?l.allowOutsideClick:l.allowOutsideClick(e))||(e.preventDefault(),e.stopImmediatePropagation())},w=function(){if(f.active)return i.activateTrap(u),r=l.delayInitialFocus?c((function(){y(b())})):y(b()),s.addEventListener("focusin",O,!0),s.addEventListener("mousedown",m,{capture:!0,passive:!1}),s.addEventListener("touchstart",m,{capture:!0,passive:!1}),s.addEventListener("click",h,{capture:!0,passive:!1}),s.addEventListener("keydown",g,{capture:!0,passive:!1}),u},E=function(){if(f.active)return s.removeEventListener("focusin",O,!0),s.removeEventListener("mousedown",m,!0),s.removeEventListener("touchstart",m,!0),s.removeEventListener("click",h,!0),s.removeEventListener("keydown",g,!0),u};return(u={activate:function(e){if(f.active)return this;p(),f.active=!0,f.paused=!1,f.nodeFocusedBeforeActivation=s.activeElement;var t=e&&e.onActivate?e.onActivate:l.onActivate;return t&&t(),w(),this},deactivate:function(e){if(!f.active)return this;clearTimeout(r),E(),f.active=!1,f.paused=!1,i.deactivateTrap(u);var t=e&&void 0!==e.onDeactivate?e.onDeactivate:l.onDeactivate;return t&&t(),(e&&void 0!==e.returnFocus?e.returnFocus:l.returnFocusOnDeactivate)&&c((function(){var e;y((e=f.nodeFocusedBeforeActivation,d("setReturnFocus")||e))})),this},pause:function(){return f.paused||!f.active||(f.paused=!0,E()),this},unpause:function(){return f.paused&&f.active?(f.paused=!1,p(),w(),this):this},updateContainerElements:function(e){var t=[].concat(e).filter(Boolean);return f.containers=t.map((function(e){return"string"==typeof e?s.querySelector(e):e})),f.active&&p(),this}}).updateContainerElements(e),u},Object.defineProperty(e,"__esModule",{value:!0})}));
5
+ !function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("tabbable")):"function"==typeof define&&define.amd?define(["exports","tabbable"],t):(e="undefined"!=typeof globalThis?globalThis:e||self,function(){var n=e.focusTrap,a=e.focusTrap={};t(a,e.tabbable),a.noConflict=function(){return e.focusTrap=n,a}}())}(this,(function(e,t){"use strict";function n(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function a(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,a)}return n}var r,o,i=(o=[],{activateTrap:function(e){if(o.length>0){var t=o[o.length-1];t!==e&&t.pause()}var n=o.indexOf(e);-1===n||o.splice(n,1),o.push(e)},deactivateTrap:function(e){var t=o.indexOf(e);-1!==t&&o.splice(t,1),o.length>0&&o[o.length-1].unpause()}}),u=function(e){return setTimeout(e,0)},c=function(e,t){var n=-1;return e.every((function(e,a){return!t(e)||(n=a,!1)})),n},s=function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),a=1;a<t;a++)n[a-1]=arguments[a];return"function"==typeof e?e.apply(void 0,n):e};e.createFocusTrap=function(e,o){var l,f=document,b=function(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?a(Object(r),!0).forEach((function(t){n(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):a(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}({returnFocusOnDeactivate:!0,escapeDeactivates:!0,delayInitialFocus:!0},o),v={containers:[],tabbableGroups:[],nodeFocusedBeforeActivation:null,mostRecentlyFocusedNode:null,active:!1,paused:!1},p=function(e){return v.containers.some((function(t){return t.contains(e)}))},d=function(e){var t=b[e];if(!t)return null;var n=t;if("string"==typeof t&&!(n=f.querySelector(t)))throw new Error("`".concat(e,"` refers to no known node"));if("function"==typeof t&&!(n=t()))throw new Error("`".concat(e,"` did not return a node"));return n},y=function(){var e;if(null!==d("initialFocus"))e=d("initialFocus");else if(p(f.activeElement))e=f.activeElement;else{var t=v.tabbableGroups[0];e=t&&t.firstTabbableNode||d("fallbackFocus")}if(!e)throw new Error("Your focus-trap needs to have at least one focusable element");return e},g=function(){if(v.tabbableGroups=v.containers.map((function(e){var n=t.tabbable(e);if(n.length>0)return{container:e,firstTabbableNode:n[0],lastTabbableNode:n[n.length-1]}})).filter((function(e){return!!e})),v.tabbableGroups.length<=0&&!d("fallbackFocus"))throw new Error("Your focus-trap must have at least one container with at least one tabbable node in it at all times")},h=function e(t){t!==f.activeElement&&(t&&t.focus?(t.focus({preventScroll:!!b.preventScroll}),v.mostRecentlyFocusedNode=t,function(e){return e.tagName&&"input"===e.tagName.toLowerCase()&&"function"==typeof e.select}(t)&&t.select()):e(y()))},m=function(e){p(e.target)||(s(b.clickOutsideDeactivates,e)?l.deactivate({returnFocus:b.returnFocusOnDeactivate&&!t.isFocusable(e.target)}):s(b.allowOutsideClick,e)||e.preventDefault())},O=function(e){var t=p(e.target);t||e.target instanceof Document?t&&(v.mostRecentlyFocusedNode=e.target):(e.stopImmediatePropagation(),h(v.mostRecentlyFocusedNode||y()))},w=function(e){if(!1!==b.escapeDeactivates&&function(e){return"Escape"===e.key||"Esc"===e.key||27===e.keyCode}(e))return e.preventDefault(),void l.deactivate();(function(e){return"Tab"===e.key||9===e.keyCode})(e)&&function(e){g();var t=null;if(v.tabbableGroups.length>0){var n=c(v.tabbableGroups,(function(t){return t.container.contains(e.target)}));if(n<0)t=e.shiftKey?v.tabbableGroups[v.tabbableGroups.length-1].lastTabbableNode:v.tabbableGroups[0].firstTabbableNode;else if(e.shiftKey){var a=c(v.tabbableGroups,(function(t){var n=t.firstTabbableNode;return e.target===n}));if(a<0&&v.tabbableGroups[n].container===e.target&&(a=n),a>=0){var r=0===a?v.tabbableGroups.length-1:a-1;t=v.tabbableGroups[r].lastTabbableNode}}else{var o=c(v.tabbableGroups,(function(t){var n=t.lastTabbableNode;return e.target===n}));if(o<0&&v.tabbableGroups[n].container===e.target&&(o=n),o>=0){var i=o===v.tabbableGroups.length-1?0:o+1;t=v.tabbableGroups[i].firstTabbableNode}}}else t=d("fallbackFocus");t&&(e.preventDefault(),h(t))}(e)},E=function(e){s(b.clickOutsideDeactivates,e)||p(e.target)||s(b.allowOutsideClick,e)||(e.preventDefault(),e.stopImmediatePropagation())},F=function(){if(v.active)return i.activateTrap(l),r=b.delayInitialFocus?u((function(){h(y())})):h(y()),f.addEventListener("focusin",O,!0),f.addEventListener("mousedown",m,{capture:!0,passive:!1}),f.addEventListener("touchstart",m,{capture:!0,passive:!1}),f.addEventListener("click",E,{capture:!0,passive:!1}),f.addEventListener("keydown",w,{capture:!0,passive:!1}),l},T=function(){if(v.active)return f.removeEventListener("focusin",O,!0),f.removeEventListener("mousedown",m,!0),f.removeEventListener("touchstart",m,!0),f.removeEventListener("click",E,!0),f.removeEventListener("keydown",w,!0),l};return(l={activate:function(e){if(v.active)return this;g(),v.active=!0,v.paused=!1,v.nodeFocusedBeforeActivation=f.activeElement;var t=e&&e.onActivate?e.onActivate:b.onActivate;return t&&t(),F(),this},deactivate:function(e){if(!v.active)return this;clearTimeout(r),T(),v.active=!1,v.paused=!1,i.deactivateTrap(l);var t=e&&void 0!==e.onDeactivate?e.onDeactivate:b.onDeactivate;return t&&t(),(e&&void 0!==e.returnFocus?e.returnFocus:b.returnFocusOnDeactivate)&&u((function(){var e;h((e=v.nodeFocusedBeforeActivation,d("setReturnFocus")||e))})),this},pause:function(){return v.paused||!v.active||(v.paused=!0,T()),this},unpause:function(){return v.paused&&v.active?(v.paused=!1,g(),F(),this):this},updateContainerElements:function(e){var t=[].concat(e).filter(Boolean);return v.containers=t.map((function(e){return"string"==typeof e?f.querySelector(e):e})),v.active&&g(),this}}).updateContainerElements(e),l},Object.defineProperty(e,"__esModule",{value:!0})}));
6
6
  //# sourceMappingURL=focus-trap.umd.min.js.map