@instructure/ui-dom-utils 11.7.4-snapshot-52 → 11.7.4-snapshot-80

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
@@ -3,9 +3,12 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
- ## [11.7.4-snapshot-52](https://github.com/instructure/instructure-ui/compare/v11.7.3...v11.7.4-snapshot-52) (2026-06-19)
6
+ ## [11.7.4-snapshot-80](https://github.com/instructure/instructure-ui/compare/v11.7.3...v11.7.4-snapshot-80) (2026-07-07)
7
7
 
8
- **Note:** Version bump only for package @instructure/ui-dom-utils
8
+
9
+ ### Bug Fixes
10
+
11
+ * **ui-modal:** skip Modal.Body tab stop when it has focusable children ([25e4261](https://github.com/instructure/instructure-ui/commit/25e42617898fa6584da0b33eed589e2710875570))
9
12
 
10
13
 
11
14
 
@@ -39,6 +39,10 @@ import { findFocusable } from './findFocusable.js';
39
39
  * @param { boolean } shouldSearchRootNode - should the root node be included in the search
40
40
  * @returns { Array } array of all tabbable children
41
41
  */
42
+ // Attributes that affect tabbability:
43
+ // tabindex, href, type, contenteditable, disabled - read directly by findFocusable
44
+ // class, style, hidden - read indirectly, via the computed display/position
45
+ // (visibility) checks in findFocusable
42
46
  function findTabbable(el, shouldSearchRootNode) {
43
47
  return findFocusable(el, element => {
44
48
  return !isInvalidTabIndex(element.getAttribute('tabindex'));
@@ -46,6 +46,10 @@ var _findFocusable = require("./findFocusable.js");
46
46
  * @param { boolean } shouldSearchRootNode - should the root node be included in the search
47
47
  * @returns { Array } array of all tabbable children
48
48
  */
49
+ // Attributes that affect tabbability:
50
+ // tabindex, href, type, contenteditable, disabled - read directly by findFocusable
51
+ // class, style, hidden - read indirectly, via the computed display/position
52
+ // (visibility) checks in findFocusable
49
53
  function findTabbable(el, shouldSearchRootNode) {
50
54
  return (0, _findFocusable.findFocusable)(el, element => {
51
55
  return !isInvalidTabIndex(element.getAttribute('tabindex'));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-dom-utils",
3
- "version": "11.7.4-snapshot-52",
3
+ "version": "11.7.4-snapshot-80",
4
4
  "description": "A DOM utility library made by Instructure Inc.",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "module": "./es/index.js",
@@ -14,15 +14,15 @@
14
14
  "bugs": "https://github.com/instructure/instructure-ui/issues",
15
15
  "license": "MIT",
16
16
  "dependencies": {
17
- "@babel/runtime": "^7.29.2",
18
- "@instructure/console": "11.7.4-snapshot-52",
19
- "@instructure/shared-types": "11.7.4-snapshot-52"
17
+ "@babel/runtime": "^7.29.7",
18
+ "@instructure/console": "11.7.4-snapshot-80",
19
+ "@instructure/shared-types": "11.7.4-snapshot-80"
20
20
  },
21
21
  "devDependencies": {
22
- "@testing-library/jest-dom": "^6.6.3",
23
- "@testing-library/react": "15.0.7",
24
- "vitest": "^3.2.2",
25
- "@instructure/ui-babel-preset": "11.7.4-snapshot-52"
22
+ "@testing-library/jest-dom": "^6.9.1",
23
+ "@testing-library/react": "16.3.2",
24
+ "vitest": "^4.1.9",
25
+ "@instructure/ui-babel-preset": "11.7.4-snapshot-80"
26
26
  },
27
27
  "peerDependencies": {
28
28
  "react": ">=18 <=19",
@@ -41,6 +41,10 @@ import { UIElement } from '@instructure/shared-types'
41
41
  * @param { boolean } shouldSearchRootNode - should the root node be included in the search
42
42
  * @returns { Array } array of all tabbable children
43
43
  */
44
+ // Attributes that affect tabbability:
45
+ // tabindex, href, type, contenteditable, disabled - read directly by findFocusable
46
+ // class, style, hidden - read indirectly, via the computed display/position
47
+ // (visibility) checks in findFocusable
44
48
  function findTabbable(el?: UIElement, shouldSearchRootNode?: boolean) {
45
49
  return findFocusable(
46
50
  el,
@@ -1 +1 @@
1
- {"fileNames":["../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/.pnpm/@types+react@18.3.26/node_modules/@types/react/global.d.ts","../../node_modules/.pnpm/csstype@3.2.3/node_modules/csstype/index.d.ts","../../node_modules/.pnpm/@types+prop-types@15.7.15/node_modules/@types/prop-types/index.d.ts","../../node_modules/.pnpm/@types+react@18.3.26/node_modules/@types/react/index.d.ts","../../node_modules/.pnpm/@types+react@18.3.26/node_modules/@types/react/jsx-runtime.d.ts","../../node_modules/.pnpm/@emotion+sheet@1.4.0/node_modules/@emotion/sheet/dist/declarations/src/index.d.ts","../../node_modules/.pnpm/@emotion+sheet@1.4.0/node_modules/@emotion/sheet/dist/emotion-sheet.cjs.d.mts","../../node_modules/.pnpm/@emotion+utils@1.4.2/node_modules/@emotion/utils/dist/declarations/src/types.d.ts","../../node_modules/.pnpm/@emotion+utils@1.4.2/node_modules/@emotion/utils/dist/declarations/src/index.d.ts","../../node_modules/.pnpm/@emotion+utils@1.4.2/node_modules/@emotion/utils/dist/emotion-utils.cjs.d.mts","../../node_modules/.pnpm/@emotion+serialize@1.3.3/node_modules/@emotion/serialize/dist/declarations/src/index.d.ts","../../node_modules/.pnpm/@emotion+serialize@1.3.3/node_modules/@emotion/serialize/dist/emotion-serialize.cjs.d.mts","../../node_modules/.pnpm/@emotion+react@11.14.0_@types+react@18.3.26_react@18.3.1/node_modules/@emotion/react/dist/declarations/src/types.d.ts","../../node_modules/.pnpm/@emotion+react@11.14.0_@types+react@18.3.26_react@18.3.1/node_modules/@emotion/react/dist/declarations/src/theming.d.ts","../../node_modules/.pnpm/@emotion+react@11.14.0_@types+react@18.3.26_react@18.3.1/node_modules/@emotion/react/dist/declarations/src/jsx-namespace.d.ts","../../node_modules/.pnpm/@emotion+react@11.14.0_@types+react@18.3.26_react@18.3.1/node_modules/@emotion/react/dist/declarations/src/jsx-runtime.d.ts","../../node_modules/.pnpm/@emotion+react@11.14.0_@types+react@18.3.26_react@18.3.1/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.cjs.d.mts","../console/types/console.d.ts","../console/types/index.d.ts","../shared-types/types/Colors.d.ts","../shared-types/types/BaseTheme.d.ts","../shared-types/types/ComponentThemeVariables.d.ts","../shared-types/types/ComponentThemeMap.d.ts","../shared-types/types/CommonTypes.d.ts","../shared-types/types/CommonProps.d.ts","../shared-types/types/UtilityTypes.d.ts","../shared-types/types/index.d.ts","../../node_modules/.pnpm/@types+react-dom@18.3.1/node_modules/@types/react-dom/index.d.ts","./src/findDOMNode.ts","./src/addEventListener.ts","./src/canUseDOM.ts","./src/InputModeListener.ts","./src/addInputModeListener.ts","./src/contains.ts","./src/ownerDocument.ts","./src/getBoundingClientRect.ts","./src/requestAnimationFrame.ts","./src/addPositionChangeListener.ts","./src/isDefinedCustomElement.ts","./src/getActiveElement.ts","./src/containsActiveElement.ts","./src/findTabbable.ts","./src/getClassList.ts","./src/ownerWindow.ts","./src/getCSSStyleDeclaration.ts","./src/getFontSize.ts","./src/getOffsetParents.ts","./src/getScrollParents.ts","./src/handleMouseOverOut.ts","./src/isActiveElement.ts","./src/isVisible.ts","./src/transformSelection.ts","./src/matchMedia.ts","./src/index.ts","./src/findFocusable.ts"],"fileIdsList":[[42,50,52],[42,43,53],[42,51],[53],[54],[40,48],[49],[44],[46],[45],[47],[42],[39,40,41],[56],[58],[60],[58,59],[58,59,60,61,62,63,64],[42,55,57,68,69],[42,55,67],[42,55,68,69],[55,65,67,74,75],[55],[55,65,67,69],[55,65,67,72,78],[55,65,66],[55,65,92],[55,65,93],[55,77],[55,65,67,69,72,73],[55,65,67,69,82],[55,65,67],[42,55,69,73,83],[55,65,67,69,73,83],[55,65,67,69,83],[42,55,72],[55,67,68,69,71,72,73,74,75,76,78,79,80,81,82,83,84,85,86,87,88,89,90,91,93],[55,65,67,78],[55,65,67,83],[55,65,67,73],[55,69]],"fileInfos":[{"version":"bcd24271a113971ba9eb71ff8cb01bc6b0f872a85c23fdbe5d93065b375933cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f88bedbeb09c6f5a6645cb24c7c55f1aa22d19ae96c8e6959cbd8b85a707bc6","impliedFormat":1},{"version":"7fe93b39b810eadd916be8db880dd7f0f7012a5cc6ffb62de8f62a2117fa6f1f","impliedFormat":1},{"version":"bb0074cc08b84a2374af33d8bf044b80851ccc9e719a5e202eacf40db2c31600","impliedFormat":1},{"version":"1a7daebe4f45fb03d9ec53d60008fbf9ac45a697fdc89e4ce218bc94b94f94d6","impliedFormat":1},{"version":"f94b133a3cb14a288803be545ac2683e0d0ff6661bcd37e31aaaec54fc382aed","impliedFormat":1},{"version":"d6b1eba8496bdd0eed6fc8a685768fe01b2da4a0388b5fe7df558290bffcf32f","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f57fc4404ff020bc45b9c620aff2b40f700b95fe31164024c453a5e3c163c54","impliedFormat":1},{"version":"eadcffda2aa84802c73938e589b9e58248d74c59cb7fcbca6474e3435ac15504","affectsGlobalScope":true,"impliedFormat":1},{"version":"105ba8ff7ba746404fe1a2e189d1d3d2e0eb29a08c18dded791af02f29fb4711","affectsGlobalScope":true,"impliedFormat":1},{"version":"00343ca5b2e3d48fa5df1db6e32ea2a59afab09590274a6cccb1dbae82e60c7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ebd9f816d4002697cb2864bea1f0b70a103124e18a8cd9645eeccc09bdf80ab4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2c1afac30a01772cd2a9a298a7ce7706b5892e447bb46bdbeef720f7b5da77ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"7b0225f483e4fa685625ebe43dd584bb7973bbd84e66a6ba7bbe175ee1048b4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0a4b8ac6ce74679c1da2b3795296f5896e31c38e888469a8e0f99dc3305de60","affectsGlobalScope":true,"impliedFormat":1},{"version":"3084a7b5f569088e0146533a00830e206565de65cae2239509168b11434cd84f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5079c53f0f141a0698faa903e76cb41cd664e3efb01cc17a5c46ec2eb0bef42","affectsGlobalScope":true,"impliedFormat":1},{"version":"32cafbc484dea6b0ab62cf8473182bbcb23020d70845b406f80b7526f38ae862","affectsGlobalScope":true,"impliedFormat":1},{"version":"fca4cdcb6d6c5ef18a869003d02c9f0fd95df8cfaf6eb431cd3376bc034cad36","affectsGlobalScope":true,"impliedFormat":1},{"version":"b93ec88115de9a9dc1b602291b85baf825c85666bf25985cc5f698073892b467","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c06dcc3fe849fcb297c247865a161f995cc29de7aa823afdd75aaaddc1419b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b77e16112127a4b169ef0b8c3a4d730edf459c5f25fe52d5e436a6919206c4d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"fbffd9337146eff822c7c00acbb78b01ea7ea23987f6c961eba689349e744f8c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a995c0e49b721312f74fdfb89e4ba29bd9824c770bbb4021d74d2bf560e4c6bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"c7b3542146734342e440a84b213384bfa188835537ddbda50d30766f0593aff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce6180fa19b1cccd07ee7f7dbb9a367ac19c0ed160573e4686425060b6df7f57","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f02e2476bccb9dbe21280d6090f0df17d2f66b74711489415a8aa4df73c9675","affectsGlobalScope":true,"impliedFormat":1},{"version":"45e3ab34c1c013c8ab2dc1ba4c80c780744b13b5676800ae2e3be27ae862c40c","affectsGlobalScope":true,"impliedFormat":1},{"version":"805c86f6cca8d7702a62a844856dbaa2a3fd2abef0536e65d48732441dde5b5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e42e397f1a5a77994f0185fd1466520691456c772d06bf843e5084ceb879a0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f4c2b41f90c95b1c532ecc874bd3c111865793b23aebcc1c3cbbabcd5d76ffb0","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab26191cfad5b66afa11b8bf935ef1cd88fabfcb28d30b2dfa6fad877d050332","affectsGlobalScope":true,"impliedFormat":1},{"version":"2088bc26531e38fb05eedac2951480db5309f6be3fa4a08d2221abb0f5b4200d","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb9d366c425fea79716a8fb3af0d78e6b22ebbab3bd64d25063b42dc9f531c1e","affectsGlobalScope":true,"impliedFormat":1},{"version":"500934a8089c26d57ebdb688fc9757389bb6207a3c8f0674d68efa900d2abb34","affectsGlobalScope":true,"impliedFormat":1},{"version":"689da16f46e647cef0d64b0def88910e818a5877ca5379ede156ca3afb780ac3","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ce14b81c5cc821994aa8ec1d42b220dd41b27fcc06373bce3958af7421b77d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3a048b3e9302ef9a34ef4ebb9aecfb28b66abb3bce577206a79fee559c230da","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb5b19b86227ace1d29ea4cf81387279d04bb34051e944bc53df69f58914b788","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac51dd7d31333793807a6abaa5ae168512b6131bd41d9c5b98477fc3b7800f9f","impliedFormat":1},{"version":"87d9d29dbc745f182683f63187bf3d53fd8673e5fca38ad5eaab69798ed29fbc","impliedFormat":1},{"version":"7a3aa194cfd5919c4da251ef04ea051077e22702638d4edcb9579e9101653519","affectsGlobalScope":true,"impliedFormat":1},{"version":"42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3","impliedFormat":1},{"version":"4dcdbdbc992d114e52247e2f960b05cf9d65d3142114bf08552b18938cb3d56b","impliedFormat":1},{"version":"b75d56703daaffcb31a7cdebf190856e07739a9481f01c2919f95bde99be9424","impliedFormat":99},{"version":"ddb5454371b8da3a72ec536ad319f9f4e0a9851ffa961ae174484296a88a70db","impliedFormat":1},{"version":"fb7c8a2d7e2b50ada1e15b223d3bb83690bd34fd764aa0e009918549e440db1d","impliedFormat":1},{"version":"b75d56703daaffcb31a7cdebf190856e07739a9481f01c2919f95bde99be9424","impliedFormat":99},{"version":"1fa33d8db2a9d2a7dbfb7a24718cccbcde8364d10cce29b1a7eea4cf3a530cbb","impliedFormat":1},{"version":"b75d56703daaffcb31a7cdebf190856e07739a9481f01c2919f95bde99be9424","impliedFormat":99},{"version":"381437930df37907c030519b23ffea4d8113f46e4431a70bfe008a0c43c63648","impliedFormat":1},{"version":"695cbb89013bc9e87fb24b0df020fe605c54f0ab5c267b5bf0490ed097044197","impliedFormat":1},{"version":"f43780383543bfcdc0a2ee850375e1f03d94bdb1b85091d5b11bb8b2023c8b49","impliedFormat":1},{"version":"977a7d9e35d24211f02d8f6fd3a60db8c289b50cacbed38a50d5b49133e76e9f","impliedFormat":1},{"version":"ea93c204a5d0c681048fe6c4554b8d23b3312f79cf99744ff42668896af975e3","impliedFormat":99},"0dcc40cf91d01bd663e5472e9703510458292e87ca33c0da667b843c806a0f86","eb0cbfa31db0505bb2499f277bc377cb49d3f3cbda1863acf57398567c9ba9ca","e1d0d20bac612e8f3ddea8e51a40cb7a75bfa38f8bedeab0a54f8d23b1767380","f5665e3d80072c76f019de5aa6e73989908869b07bb6654ef7b2143b5ee03f46","7aa601569d7a234b816233ca14b958665ec4ed6bcc43d8dab462608c34aced09","d052285e62167e6c63fac48327ab2b3f1deb79350d6de14888f2701b5e601e62","8803c846ec1612036beeeb787da273d7c264d03c85adf41a1aa44ab55cb2e7ab","33a1f5a3c695b3a471bbdcb0256a33516352658e1d84fd787b1ecd9b8b1e3a6e","b5d5e9da66857b591c0d118694af06e5f455c9e5915fb6768efc9106f0464fbe","bccc3c61d08a92ef644f62ae77059654d41855811b028c1c66b542413f205931",{"version":"17ed71200119e86ccef2d96b73b02ce8854b76ad6bd21b5021d4269bec527b5f","impliedFormat":1},{"version":"97075241f09622a8591c7c419cab9e10e23fad9fc3fb29201763f6a9216a6ce5","signature":"bccddfd7bee6ae40ce9dd52eb80bc235941ea2c9903cd0e1e7b3751fff629586"},{"version":"f95d7d2af3f303775ca29e1008e4dcb581ba50eff101507587a620ec4fd31caa","signature":"b8ebb6c67918caa9a4a54e77b5a66aab58738afcd81cbff1bb8133819b81fee7"},{"version":"a63d0507106f94827a02353c534ebc922bdfd824bf505678575bf1fa9b1ba9c7","signature":"ead02dcd20fdc84ec422c810100419b88eeed3e19d61eea0f06e708a0315ee7b"},{"version":"9930dae772a2f876ea96b1a326bc6a28cdb01b66f8a8f4dd44da461bbf9bc08c","signature":"7b86b02691ad0fd0b1b87c2d26c0bfce4709461fda16fde61b31c795a7301263"},{"version":"d9662accfefe8bab5c7c114f1dd06642b4cfc9c89135c1c2cc3c597f1d3614b3","signature":"5cc2903f2c3e62bb9f1828c1987e306c0e4a043003bee909e1c54feadc2cfee9"},{"version":"a37a8e6f567f414e6978a81bab0bc8d25cc0f8347f2bfd1f69a6f5cf8f710cf7","signature":"0f7d8367c104b46dfb9bf78d61bf58595605df70351cf9f91049ce2feaec96fe"},{"version":"3256b837c2cfcf4200f91dcac9276f105a19bf2e7201f29f395e6d420a5b2fea","signature":"69913ab1d786512141c4f30f52e6037ab5d4a164fdb5272d4dd722a20bfef87f"},{"version":"068662752e77811bfd4c03c0f1e58f2483fc26ed6886fa5ce42aa5883b1f4557","signature":"94dcf6c2656b9bec87138cea5fafd87209bcbdeb13c5ff85df8e1e83e62f06ca"},{"version":"5b400f0b685d855459ac37843cf6935c9bc69176659705f86bf13c4a62c4ce57","signature":"419542c9c1d8edbd407a4b7d49de15a5f2385935ffaee866a2bc9888c00418e5"},{"version":"5e4939d2b698d49800a251f2f0a85374b0a4203c57138c9a4d59bcb47ef0a6f2","signature":"d2ac6f79197c898328311b65bba19cd9b264d47f377574022133d239b8371064"},{"version":"663abc57c94c066b8e70e388958352e16ce0229ab96a32c7fda3092097761c5c","signature":"c51af2344827e0cca8a8742120d54f2553672cfbe0a305088fe5e2f4e1768b9a"},{"version":"b59d5095e9ac55a78c8e066c2cdf428d05054b735cdb02c1bf65b413e9f8b1ac","signature":"0d0de493b31d1644dbbd2ee514b947dbc32ddabfb9317009291773328164e68c"},{"version":"08744e7f69acb7543bb53af9bf9f1b2485f6a134a51cba06587d9d85119fbf66","signature":"d45eb2883eb82f7dce5d16acad3a50545f9100e6a4690cf017844cfd8b36eb89"},{"version":"4810f2bc1e2da789463cc654c20ae63a627c23d9bc351c267547bb3e93055b9c","signature":"2fb3da9acbfc0a8193307b6f8582e377aee88e978b66006cb7304b264dc7b0b9"},{"version":"fd22148f392f7d057c4b10e339b2e02180745e5217b3dcd86a84d35fb2de32a9","signature":"1d4961a3974b2664e1c27babbbdb1db588cc9d3c339c2692d7407449a1700d03"},{"version":"ad053a5fea23910f47296ebffe8535fce75880906f98b5fa60024867139bbac8","signature":"713d6907fa264aedd138d0693aff2c64e01bc52da91453a566ce003c045c82f8"},{"version":"26c1791c3639b18fcd5bba8419d01aa471a1565d1ebfdf09344373a53da9ac14","signature":"34d8e5c02b2aa11e7b693f57241666828c8c34bde38542e66773adcc94a269bc"},{"version":"92c60e15077052b47bd6f3ebd5f38c06d1f42dacc8604ab2418b0e0346ae3647","signature":"cb15340609003657d7463f6c0311023dc27b9699e43efb45263b43deb730ad0b"},{"version":"a494f15358dff7ad7be668efb16a557a30cbb3e3f527b4069476786852e0b8c1","signature":"d36f774889d78d0b27976a0b936de73ac5fd898aeb08a40201da8b51d4892c16"},{"version":"7fdc57806121080a222a322805fb6020ad2d667e69073a822526f186b14676ed","signature":"e30b3df01b9b7994a9272995a0976c564b9e149e32ad11cb223caee9c2a55c48"},{"version":"8fd8f135a8dfbb8237358a611658d3af75543f92cdecd8a40b32996e71428696","signature":"f297fa0681a76eb9f3680c4133a08da46f78c17ee9ab0b3df8432e1465f5a45a"},{"version":"1cc21208947b00c4b9ded430b639dccd30f2fa4ff2ca00764245e45ff51775fc","signature":"acfef8efbaee8ad4b25bc5264c39c62a6ea65e9aaf8b1cd0f4c64c196a4e2c03"},{"version":"bb51e85de5da14676fcbe8100357880ba4b7f2dbd16e2fbced6ec4bfc3a031ac","signature":"aaa585e077ec8bb2cd4509efcb44be4d5c3654c150a89fb5cd6168f9af74f000"},{"version":"dc31a0c12ad2e325a1f64e41623a827b7fc254e4f531bcb95fbb6f93b72df250","signature":"0fcbed42c597ce163042c10447451465ea66fca420fe47108a5b20df68c78d28"},{"version":"4b9587e020692aa12f9c7800a52e2709da74fd7c07e3e7734f783977302098b0","signature":"671a9f0b848deec6c25c98a9848e588bb55b09aad8be8e5f37701eb194f11ab6"},{"version":"48add764b8ca6f70e8a2f8998e33e476a5bcc3c66439ce397fac321e0b87bbe4","signature":"78c8f5dd64ad45edc162bc77b18fa9d8a64b781467a3c90a4d9dcba14fba1194"},{"version":"dd020576ac30f1cd19e3d661004e5c401d9d7bb6d8aa348b756ba6e47174c84e","signature":"2d09998e16ccbbb8593a461c4833371c65c63526c4e80cd92868a61d40a4d81b"}],"root":[[67,93]],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"checkJs":false,"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"experimentalDecorators":true,"jsx":4,"jsxImportSource":"@emotion/react","module":99,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./types","rootDir":"./src","skipLibCheck":true,"strict":true,"target":2},"referencedMap":[[53,1],[54,2],[52,3],[51,4],[55,5],[49,6],[50,7],[45,8],[47,9],[46,10],[48,11],[66,12],[42,13],[43,12],[57,14],[59,15],[63,12],[62,12],[61,16],[60,17],[65,18],[70,19],[68,20],[71,21],[76,22],[69,23],[72,24],[79,25],[67,26],[93,27],[80,28],[78,29],[74,30],[83,31],[81,32],[84,33],[85,34],[86,35],[87,36],[92,37],[88,38],[77,23],[89,39],[91,31],[73,24],[82,40],[75,41],[90,23]],"latestChangedDtsFile":"./types/findFocusable.d.ts","version":"6.0.3"}
1
+ {"fileNames":["../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2023.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2023.array.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2023.collection.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2023.intl.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/.pnpm/@types+react@18.3.26/node_modules/@types/react/global.d.ts","../../node_modules/.pnpm/csstype@3.2.3/node_modules/csstype/index.d.ts","../../node_modules/.pnpm/@types+prop-types@15.7.15/node_modules/@types/prop-types/index.d.ts","../../node_modules/.pnpm/@types+react@18.3.26/node_modules/@types/react/index.d.ts","../../node_modules/.pnpm/@types+react@18.3.26/node_modules/@types/react/jsx-runtime.d.ts","../../node_modules/.pnpm/@emotion+sheet@1.4.0/node_modules/@emotion/sheet/dist/declarations/src/index.d.ts","../../node_modules/.pnpm/@emotion+sheet@1.4.0/node_modules/@emotion/sheet/dist/emotion-sheet.cjs.d.mts","../../node_modules/.pnpm/@emotion+utils@1.4.2/node_modules/@emotion/utils/dist/declarations/src/types.d.ts","../../node_modules/.pnpm/@emotion+utils@1.4.2/node_modules/@emotion/utils/dist/declarations/src/index.d.ts","../../node_modules/.pnpm/@emotion+utils@1.4.2/node_modules/@emotion/utils/dist/emotion-utils.cjs.d.mts","../../node_modules/.pnpm/@emotion+serialize@1.3.3/node_modules/@emotion/serialize/dist/declarations/src/index.d.ts","../../node_modules/.pnpm/@emotion+serialize@1.3.3/node_modules/@emotion/serialize/dist/emotion-serialize.cjs.d.mts","../../node_modules/.pnpm/@emotion+react@11.14.0_@types+react@18.3.26_react@18.3.1/node_modules/@emotion/react/dist/declarations/src/types.d.ts","../../node_modules/.pnpm/@emotion+react@11.14.0_@types+react@18.3.26_react@18.3.1/node_modules/@emotion/react/dist/declarations/src/theming.d.ts","../../node_modules/.pnpm/@emotion+react@11.14.0_@types+react@18.3.26_react@18.3.1/node_modules/@emotion/react/dist/declarations/src/jsx-namespace.d.ts","../../node_modules/.pnpm/@emotion+react@11.14.0_@types+react@18.3.26_react@18.3.1/node_modules/@emotion/react/dist/declarations/src/jsx-runtime.d.ts","../../node_modules/.pnpm/@emotion+react@11.14.0_@types+react@18.3.26_react@18.3.1/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.cjs.d.mts","../console/types/console.d.ts","../console/types/index.d.ts","../shared-types/types/Colors.d.ts","../shared-types/types/BaseTheme.d.ts","../shared-types/types/ComponentThemeVariables.d.ts","../shared-types/types/ComponentThemeMap.d.ts","../shared-types/types/CommonTypes.d.ts","../shared-types/types/CommonProps.d.ts","../shared-types/types/UtilityTypes.d.ts","../shared-types/types/index.d.ts","../../node_modules/.pnpm/@types+react-dom@18.3.1/node_modules/@types/react-dom/index.d.ts","./src/findDOMNode.ts","./src/addEventListener.ts","./src/canUseDOM.ts","./src/InputModeListener.ts","./src/addInputModeListener.ts","./src/contains.ts","./src/ownerDocument.ts","./src/getBoundingClientRect.ts","./src/requestAnimationFrame.ts","./src/addPositionChangeListener.ts","./src/isDefinedCustomElement.ts","./src/getActiveElement.ts","./src/containsActiveElement.ts","./src/findTabbable.ts","./src/getClassList.ts","./src/ownerWindow.ts","./src/getCSSStyleDeclaration.ts","./src/getFontSize.ts","./src/getOffsetParents.ts","./src/getScrollParents.ts","./src/handleMouseOverOut.ts","./src/isActiveElement.ts","./src/isVisible.ts","./src/transformSelection.ts","./src/matchMedia.ts","./src/index.ts","./src/findFocusable.ts"],"fileIdsList":[[67,75,77],[67,68,78],[67,76],[78],[79],[65,73],[74],[69],[71],[70],[72],[67],[64,65,66],[81],[83],[85],[83,84],[83,84,85,86,87,88,89],[67,80,82,93,94],[67,80,92],[67,80,93,94],[80,90,92,99,100],[80],[80,90,92,94],[80,90,92,97,103],[80,90,91],[80,90,117],[80,90,118],[80,102],[80,90,92,94,97,98],[80,90,92,94,107],[80,90,92],[67,80,94,98,108],[80,90,92,94,98,108],[80,90,92,94,108],[67,80,97],[80,92,93,94,96,97,98,99,100,101,103,104,105,106,107,108,109,110,111,112,113,114,115,116,118],[80,90,92,103],[80,90,92,108],[80,90,92,98],[80,94]],"fileInfos":[{"version":"bcd24271a113971ba9eb71ff8cb01bc6b0f872a85c23fdbe5d93065b375933cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f88bedbeb09c6f5a6645cb24c7c55f1aa22d19ae96c8e6959cbd8b85a707bc6","impliedFormat":1},{"version":"7fe93b39b810eadd916be8db880dd7f0f7012a5cc6ffb62de8f62a2117fa6f1f","impliedFormat":1},{"version":"bb0074cc08b84a2374af33d8bf044b80851ccc9e719a5e202eacf40db2c31600","impliedFormat":1},{"version":"1a7daebe4f45fb03d9ec53d60008fbf9ac45a697fdc89e4ce218bc94b94f94d6","impliedFormat":1},{"version":"f94b133a3cb14a288803be545ac2683e0d0ff6661bcd37e31aaaec54fc382aed","impliedFormat":1},{"version":"f59d0650799f8782fd74cf73c19223730c6d1b9198671b1c5b3a38e1188b5953","impliedFormat":1},{"version":"8a15b4607d9a499e2dbeed9ec0d3c0d7372c850b2d5f1fb259e8f6d41d468a84","impliedFormat":1},{"version":"26e0fe14baee4e127f4365d1ae0b276f400562e45e19e35fd2d4c296684715e6","impliedFormat":1},{"version":"1e9332c23e9a907175e0ffc6a49e236f97b48838cc8aec9ce7e4cec21e544b65","impliedFormat":1},{"version":"d6b1eba8496bdd0eed6fc8a685768fe01b2da4a0388b5fe7df558290bffcf32f","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f57fc4404ff020bc45b9c620aff2b40f700b95fe31164024c453a5e3c163c54","impliedFormat":1},{"version":"eadcffda2aa84802c73938e589b9e58248d74c59cb7fcbca6474e3435ac15504","affectsGlobalScope":true,"impliedFormat":1},{"version":"105ba8ff7ba746404fe1a2e189d1d3d2e0eb29a08c18dded791af02f29fb4711","affectsGlobalScope":true,"impliedFormat":1},{"version":"00343ca5b2e3d48fa5df1db6e32ea2a59afab09590274a6cccb1dbae82e60c7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ebd9f816d4002697cb2864bea1f0b70a103124e18a8cd9645eeccc09bdf80ab4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2c1afac30a01772cd2a9a298a7ce7706b5892e447bb46bdbeef720f7b5da77ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"7b0225f483e4fa685625ebe43dd584bb7973bbd84e66a6ba7bbe175ee1048b4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0a4b8ac6ce74679c1da2b3795296f5896e31c38e888469a8e0f99dc3305de60","affectsGlobalScope":true,"impliedFormat":1},{"version":"3084a7b5f569088e0146533a00830e206565de65cae2239509168b11434cd84f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5079c53f0f141a0698faa903e76cb41cd664e3efb01cc17a5c46ec2eb0bef42","affectsGlobalScope":true,"impliedFormat":1},{"version":"32cafbc484dea6b0ab62cf8473182bbcb23020d70845b406f80b7526f38ae862","affectsGlobalScope":true,"impliedFormat":1},{"version":"fca4cdcb6d6c5ef18a869003d02c9f0fd95df8cfaf6eb431cd3376bc034cad36","affectsGlobalScope":true,"impliedFormat":1},{"version":"b93ec88115de9a9dc1b602291b85baf825c85666bf25985cc5f698073892b467","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c06dcc3fe849fcb297c247865a161f995cc29de7aa823afdd75aaaddc1419b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b77e16112127a4b169ef0b8c3a4d730edf459c5f25fe52d5e436a6919206c4d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"fbffd9337146eff822c7c00acbb78b01ea7ea23987f6c961eba689349e744f8c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a995c0e49b721312f74fdfb89e4ba29bd9824c770bbb4021d74d2bf560e4c6bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"c7b3542146734342e440a84b213384bfa188835537ddbda50d30766f0593aff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce6180fa19b1cccd07ee7f7dbb9a367ac19c0ed160573e4686425060b6df7f57","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f02e2476bccb9dbe21280d6090f0df17d2f66b74711489415a8aa4df73c9675","affectsGlobalScope":true,"impliedFormat":1},{"version":"45e3ab34c1c013c8ab2dc1ba4c80c780744b13b5676800ae2e3be27ae862c40c","affectsGlobalScope":true,"impliedFormat":1},{"version":"805c86f6cca8d7702a62a844856dbaa2a3fd2abef0536e65d48732441dde5b5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e42e397f1a5a77994f0185fd1466520691456c772d06bf843e5084ceb879a0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f4c2b41f90c95b1c532ecc874bd3c111865793b23aebcc1c3cbbabcd5d76ffb0","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab26191cfad5b66afa11b8bf935ef1cd88fabfcb28d30b2dfa6fad877d050332","affectsGlobalScope":true,"impliedFormat":1},{"version":"2088bc26531e38fb05eedac2951480db5309f6be3fa4a08d2221abb0f5b4200d","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb9d366c425fea79716a8fb3af0d78e6b22ebbab3bd64d25063b42dc9f531c1e","affectsGlobalScope":true,"impliedFormat":1},{"version":"500934a8089c26d57ebdb688fc9757389bb6207a3c8f0674d68efa900d2abb34","affectsGlobalScope":true,"impliedFormat":1},{"version":"689da16f46e647cef0d64b0def88910e818a5877ca5379ede156ca3afb780ac3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc21cc8b6fee4f4c2440d08035b7ea3c06b3511314c8bab6bef7a92de58a2593","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ca53d13d2957003abb47922a71866ba7cb2068f8d154877c596d63c359fed25","affectsGlobalScope":true,"impliedFormat":1},{"version":"54725f8c4df3d900cb4dac84b64689ce29548da0b4e9b7c2de61d41c79293611","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5594bc3076ac29e6c1ebda77939bc4c8833de72f654b6e376862c0473199323","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f3eb332c2d73e729f3364fcc0c2b375e72a121e8157d25a82d67a138c83a95c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f4427f9642ce8d500970e4e69d1397f64072ab73b97e476b4002a646ac743b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"48915f327cd1dea4d7bd358d9dc7732f58f9e1626a29cc0c05c8c692419d9bb7","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7bf9377723203b5a6a4b920164df22d56a43f593269ba6ae1fdc97774b68855","affectsGlobalScope":true,"impliedFormat":1},{"version":"db9709688f82c9e5f65a119c64d835f906efe5f559d08b11642d56eb85b79357","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b25b8c874acd1a4cf8444c3617e037d444d19080ac9f634b405583fd10ce1f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be57d7c90cf1f8112ee2636a068d8fd181289f82b744160ec56a7dc158a9f5","affectsGlobalScope":true,"impliedFormat":1},{"version":"a917a49ac94cd26b754ab84e113369a75d1a47a710661d7cd25e961cc797065f","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d3261badeb7843d157ef3e6f5d1427d0eeb0af0cf9df84a62cfd29fd47ac86e","affectsGlobalScope":true,"impliedFormat":1},{"version":"195daca651dde22f2167ac0d0a05e215308119a3100f5e6268e8317d05a92526","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b11e4285cd2bb164a4dc09248bdec69e9842517db4ca47c1ba913011e44ff2f","affectsGlobalScope":true,"impliedFormat":1},{"version":"0508571a52475e245b02bc50fa1394065a0a3d05277fbf5120c3784b85651799","affectsGlobalScope":true,"impliedFormat":1},{"version":"8f9af488f510c3015af3cc8c267a9e9d96c4dd38a1fdff0e11dc5a544711415b","affectsGlobalScope":true,"impliedFormat":1},{"version":"fc611fea8d30ea72c6bbfb599c9b4d393ce22e2f5bfef2172534781e7d138104","affectsGlobalScope":true,"impliedFormat":1},{"version":"0bd714129fca875f7d4c477a1a392200b0bcd13fb2e80928cd334b63830ea047","affectsGlobalScope":true,"impliedFormat":1},{"version":"e2c9037ae6cd2c52d80ceef0b3c5ffdb488627d71529cf4f63776daf11161c9a","affectsGlobalScope":true,"impliedFormat":1},{"version":"135d5cf4d345f59f1a9caadfafcd858d3d9cc68290db616cc85797224448cccc","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ce14b81c5cc821994aa8ec1d42b220dd41b27fcc06373bce3958af7421b77d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3a048b3e9302ef9a34ef4ebb9aecfb28b66abb3bce577206a79fee559c230da","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb5b19b86227ace1d29ea4cf81387279d04bb34051e944bc53df69f58914b788","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac51dd7d31333793807a6abaa5ae168512b6131bd41d9c5b98477fc3b7800f9f","impliedFormat":1},{"version":"87d9d29dbc745f182683f63187bf3d53fd8673e5fca38ad5eaab69798ed29fbc","impliedFormat":1},{"version":"7a3aa194cfd5919c4da251ef04ea051077e22702638d4edcb9579e9101653519","affectsGlobalScope":true,"impliedFormat":1},{"version":"42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3","impliedFormat":1},{"version":"4dcdbdbc992d114e52247e2f960b05cf9d65d3142114bf08552b18938cb3d56b","impliedFormat":1},{"version":"b75d56703daaffcb31a7cdebf190856e07739a9481f01c2919f95bde99be9424","impliedFormat":99},{"version":"ddb5454371b8da3a72ec536ad319f9f4e0a9851ffa961ae174484296a88a70db","impliedFormat":1},{"version":"fb7c8a2d7e2b50ada1e15b223d3bb83690bd34fd764aa0e009918549e440db1d","impliedFormat":1},{"version":"b75d56703daaffcb31a7cdebf190856e07739a9481f01c2919f95bde99be9424","impliedFormat":99},{"version":"1fa33d8db2a9d2a7dbfb7a24718cccbcde8364d10cce29b1a7eea4cf3a530cbb","impliedFormat":1},{"version":"b75d56703daaffcb31a7cdebf190856e07739a9481f01c2919f95bde99be9424","impliedFormat":99},{"version":"381437930df37907c030519b23ffea4d8113f46e4431a70bfe008a0c43c63648","impliedFormat":1},{"version":"695cbb89013bc9e87fb24b0df020fe605c54f0ab5c267b5bf0490ed097044197","impliedFormat":1},{"version":"f43780383543bfcdc0a2ee850375e1f03d94bdb1b85091d5b11bb8b2023c8b49","impliedFormat":1},{"version":"977a7d9e35d24211f02d8f6fd3a60db8c289b50cacbed38a50d5b49133e76e9f","impliedFormat":1},{"version":"ea93c204a5d0c681048fe6c4554b8d23b3312f79cf99744ff42668896af975e3","impliedFormat":99},"0dcc40cf91d01bd663e5472e9703510458292e87ca33c0da667b843c806a0f86","eb0cbfa31db0505bb2499f277bc377cb49d3f3cbda1863acf57398567c9ba9ca","e1d0d20bac612e8f3ddea8e51a40cb7a75bfa38f8bedeab0a54f8d23b1767380","f5665e3d80072c76f019de5aa6e73989908869b07bb6654ef7b2143b5ee03f46","7aa601569d7a234b816233ca14b958665ec4ed6bcc43d8dab462608c34aced09","d052285e62167e6c63fac48327ab2b3f1deb79350d6de14888f2701b5e601e62","8803c846ec1612036beeeb787da273d7c264d03c85adf41a1aa44ab55cb2e7ab","33a1f5a3c695b3a471bbdcb0256a33516352658e1d84fd787b1ecd9b8b1e3a6e","b5d5e9da66857b591c0d118694af06e5f455c9e5915fb6768efc9106f0464fbe","bccc3c61d08a92ef644f62ae77059654d41855811b028c1c66b542413f205931",{"version":"17ed71200119e86ccef2d96b73b02ce8854b76ad6bd21b5021d4269bec527b5f","impliedFormat":1},{"version":"97075241f09622a8591c7c419cab9e10e23fad9fc3fb29201763f6a9216a6ce5","signature":"bccddfd7bee6ae40ce9dd52eb80bc235941ea2c9903cd0e1e7b3751fff629586"},{"version":"f95d7d2af3f303775ca29e1008e4dcb581ba50eff101507587a620ec4fd31caa","signature":"b8ebb6c67918caa9a4a54e77b5a66aab58738afcd81cbff1bb8133819b81fee7"},{"version":"a63d0507106f94827a02353c534ebc922bdfd824bf505678575bf1fa9b1ba9c7","signature":"ead02dcd20fdc84ec422c810100419b88eeed3e19d61eea0f06e708a0315ee7b"},{"version":"9930dae772a2f876ea96b1a326bc6a28cdb01b66f8a8f4dd44da461bbf9bc08c","signature":"7b86b02691ad0fd0b1b87c2d26c0bfce4709461fda16fde61b31c795a7301263"},{"version":"d9662accfefe8bab5c7c114f1dd06642b4cfc9c89135c1c2cc3c597f1d3614b3","signature":"5cc2903f2c3e62bb9f1828c1987e306c0e4a043003bee909e1c54feadc2cfee9"},{"version":"a37a8e6f567f414e6978a81bab0bc8d25cc0f8347f2bfd1f69a6f5cf8f710cf7","signature":"0f7d8367c104b46dfb9bf78d61bf58595605df70351cf9f91049ce2feaec96fe"},{"version":"3256b837c2cfcf4200f91dcac9276f105a19bf2e7201f29f395e6d420a5b2fea","signature":"69913ab1d786512141c4f30f52e6037ab5d4a164fdb5272d4dd722a20bfef87f"},{"version":"068662752e77811bfd4c03c0f1e58f2483fc26ed6886fa5ce42aa5883b1f4557","signature":"94dcf6c2656b9bec87138cea5fafd87209bcbdeb13c5ff85df8e1e83e62f06ca"},{"version":"5b400f0b685d855459ac37843cf6935c9bc69176659705f86bf13c4a62c4ce57","signature":"419542c9c1d8edbd407a4b7d49de15a5f2385935ffaee866a2bc9888c00418e5"},{"version":"5e4939d2b698d49800a251f2f0a85374b0a4203c57138c9a4d59bcb47ef0a6f2","signature":"d2ac6f79197c898328311b65bba19cd9b264d47f377574022133d239b8371064"},{"version":"663abc57c94c066b8e70e388958352e16ce0229ab96a32c7fda3092097761c5c","signature":"c51af2344827e0cca8a8742120d54f2553672cfbe0a305088fe5e2f4e1768b9a"},{"version":"b59d5095e9ac55a78c8e066c2cdf428d05054b735cdb02c1bf65b413e9f8b1ac","signature":"0d0de493b31d1644dbbd2ee514b947dbc32ddabfb9317009291773328164e68c"},{"version":"08744e7f69acb7543bb53af9bf9f1b2485f6a134a51cba06587d9d85119fbf66","signature":"d45eb2883eb82f7dce5d16acad3a50545f9100e6a4690cf017844cfd8b36eb89"},{"version":"d18dfcf1da7f8d8cb10d0c55ef8592cf8fd5452bedbf1ea51081cf7351a983ab","signature":"2fb3da9acbfc0a8193307b6f8582e377aee88e978b66006cb7304b264dc7b0b9"},{"version":"fd22148f392f7d057c4b10e339b2e02180745e5217b3dcd86a84d35fb2de32a9","signature":"1d4961a3974b2664e1c27babbbdb1db588cc9d3c339c2692d7407449a1700d03"},{"version":"ad053a5fea23910f47296ebffe8535fce75880906f98b5fa60024867139bbac8","signature":"713d6907fa264aedd138d0693aff2c64e01bc52da91453a566ce003c045c82f8"},{"version":"26c1791c3639b18fcd5bba8419d01aa471a1565d1ebfdf09344373a53da9ac14","signature":"34d8e5c02b2aa11e7b693f57241666828c8c34bde38542e66773adcc94a269bc"},{"version":"92c60e15077052b47bd6f3ebd5f38c06d1f42dacc8604ab2418b0e0346ae3647","signature":"cb15340609003657d7463f6c0311023dc27b9699e43efb45263b43deb730ad0b"},{"version":"a494f15358dff7ad7be668efb16a557a30cbb3e3f527b4069476786852e0b8c1","signature":"d36f774889d78d0b27976a0b936de73ac5fd898aeb08a40201da8b51d4892c16"},{"version":"7fdc57806121080a222a322805fb6020ad2d667e69073a822526f186b14676ed","signature":"e30b3df01b9b7994a9272995a0976c564b9e149e32ad11cb223caee9c2a55c48"},{"version":"8fd8f135a8dfbb8237358a611658d3af75543f92cdecd8a40b32996e71428696","signature":"f297fa0681a76eb9f3680c4133a08da46f78c17ee9ab0b3df8432e1465f5a45a"},{"version":"1cc21208947b00c4b9ded430b639dccd30f2fa4ff2ca00764245e45ff51775fc","signature":"acfef8efbaee8ad4b25bc5264c39c62a6ea65e9aaf8b1cd0f4c64c196a4e2c03"},{"version":"bb51e85de5da14676fcbe8100357880ba4b7f2dbd16e2fbced6ec4bfc3a031ac","signature":"aaa585e077ec8bb2cd4509efcb44be4d5c3654c150a89fb5cd6168f9af74f000"},{"version":"dc31a0c12ad2e325a1f64e41623a827b7fc254e4f531bcb95fbb6f93b72df250","signature":"0fcbed42c597ce163042c10447451465ea66fca420fe47108a5b20df68c78d28"},{"version":"4b9587e020692aa12f9c7800a52e2709da74fd7c07e3e7734f783977302098b0","signature":"671a9f0b848deec6c25c98a9848e588bb55b09aad8be8e5f37701eb194f11ab6"},{"version":"48add764b8ca6f70e8a2f8998e33e476a5bcc3c66439ce397fac321e0b87bbe4","signature":"78c8f5dd64ad45edc162bc77b18fa9d8a64b781467a3c90a4d9dcba14fba1194"},{"version":"dd020576ac30f1cd19e3d661004e5c401d9d7bb6d8aa348b756ba6e47174c84e","signature":"2d09998e16ccbbb8593a461c4833371c65c63526c4e80cd92868a61d40a4d81b"}],"root":[[92,118]],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"checkJs":false,"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"experimentalDecorators":true,"jsx":4,"jsxImportSource":"@emotion/react","module":99,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./types","rootDir":"./src","skipLibCheck":true,"strict":true,"target":2},"referencedMap":[[78,1],[79,2],[77,3],[76,4],[80,5],[74,6],[75,7],[70,8],[72,9],[71,10],[73,11],[91,12],[67,13],[68,12],[82,14],[84,15],[88,12],[87,12],[86,16],[85,17],[90,18],[95,19],[93,20],[96,21],[101,22],[94,23],[97,24],[104,25],[92,26],[118,27],[105,28],[103,29],[99,30],[108,31],[106,32],[109,33],[110,34],[111,35],[112,36],[117,37],[113,38],[102,23],[114,39],[116,31],[98,24],[107,40],[100,41],[115,23]],"latestChangedDtsFile":"./types/findFocusable.d.ts","version":"6.0.3"}
@@ -1 +1 @@
1
- {"version":3,"file":"findTabbable.d.ts","sourceRoot":"","sources":["../src/findTabbable.ts"],"names":[],"mappings":"AAyBA,OAAO,EAAE,SAAS,EAAE,MAAM,2BAA2B,CAAA;AAErD;;;;;;;;;;;;;;;GAeG;AACH,iBAAS,YAAY,CAAC,EAAE,CAAC,EAAE,SAAS,EAAE,oBAAoB,CAAC,EAAE,OAAO,aAQnE;AAOD,eAAe,YAAY,CAAA;AAC3B,OAAO,EAAE,YAAY,EAAE,CAAA"}
1
+ {"version":3,"file":"findTabbable.d.ts","sourceRoot":"","sources":["../src/findTabbable.ts"],"names":[],"mappings":"AAyBA,OAAO,EAAE,SAAS,EAAE,MAAM,2BAA2B,CAAA;AAErD;;;;;;;;;;;;;;;GAeG;AAKH,iBAAS,YAAY,CAAC,EAAE,CAAC,EAAE,SAAS,EAAE,oBAAoB,CAAC,EAAE,OAAO,aAQnE;AAOD,eAAe,YAAY,CAAA;AAC3B,OAAO,EAAE,YAAY,EAAE,CAAA"}