@instructure/ui-a11y-utils 8.13.1-snapshot.9 → 8.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/es/types.js +1 -0
- package/lib/types.js +1 -0
- package/package.json +11 -12
- package/src/FocusRegion.ts +12 -20
- package/src/FocusRegionOptions.ts +7 -2
- package/src/KeyboardFocusRegion.ts +6 -10
- package/src/scopeTab.ts +1 -1
- package/src/types.ts +36 -0
- package/tsconfig.build.json +16 -3
- package/tsconfig.build.tsbuildinfo +1 -0
- package/types/FocusRegion.d.ts +5 -5
- package/types/FocusRegion.d.ts.map +1 -1
- package/types/FocusRegionManager.d.ts +1 -1
- package/types/FocusRegionOptions.d.ts +3 -2
- package/types/FocusRegionOptions.d.ts.map +1 -1
- package/types/KeyboardFocusRegion.d.ts +3 -3
- package/types/KeyboardFocusRegion.d.ts.map +1 -1
- package/types/scopeTab.d.ts +2 -1
- package/types/scopeTab.d.ts.map +1 -1
- package/types/types.d.ts +7 -0
- package/types/types.d.ts.map +1 -0
- package/LICENSE.md +0 -27
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +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
|
+
# [8.14.0](https://github.com/instructure/instructure-ui/compare/v8.13.0...v8.14.0) (2021-12-16)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- **ui-pagination:** add new arrow button features ([80a43fe](https://github.com/instructure/instructure-ui/commit/80a43fe967206e9a026a9d61236a227e9a6bb184))
|
|
11
|
+
|
|
6
12
|
# [8.13.0](https://github.com/instructure/instructure-ui/compare/v8.12.0...v8.13.0) (2021-12-01)
|
|
7
13
|
|
|
8
14
|
### Bug Fixes
|
package/es/types.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/lib/types.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-a11y-utils",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.14.0",
|
|
4
4
|
"description": "A collection of utilities for managing focus and screen reader behavior",
|
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
6
6
|
"type": "commonjs",
|
|
@@ -24,19 +24,19 @@
|
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@babel/runtime": "^7.13.10",
|
|
27
|
-
"@instructure/console": "8.
|
|
28
|
-
"@instructure/ui-a11y-content": "8.
|
|
29
|
-
"@instructure/ui-dom-utils": "8.
|
|
30
|
-
"@instructure/ui-react-utils": "8.
|
|
31
|
-
"@instructure/ui-testable": "8.
|
|
32
|
-
"@instructure/uid": "8.
|
|
27
|
+
"@instructure/console": "8.14.0",
|
|
28
|
+
"@instructure/ui-a11y-content": "8.14.0",
|
|
29
|
+
"@instructure/ui-dom-utils": "8.14.0",
|
|
30
|
+
"@instructure/ui-react-utils": "8.14.0",
|
|
31
|
+
"@instructure/ui-testable": "8.14.0",
|
|
32
|
+
"@instructure/uid": "8.14.0",
|
|
33
33
|
"keycode": "^2",
|
|
34
34
|
"prop-types": "^15"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@instructure/ui-babel-preset": "8.
|
|
38
|
-
"@instructure/ui-color-utils": "8.
|
|
39
|
-
"@instructure/ui-test-utils": "8.
|
|
37
|
+
"@instructure/ui-babel-preset": "8.14.0",
|
|
38
|
+
"@instructure/ui-color-utils": "8.14.0",
|
|
39
|
+
"@instructure/ui-test-utils": "8.14.0"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
42
|
"react": ">=16.8 <=17"
|
|
@@ -44,6 +44,5 @@
|
|
|
44
44
|
"publishConfig": {
|
|
45
45
|
"access": "public"
|
|
46
46
|
},
|
|
47
|
-
"sideEffects": false
|
|
48
|
-
"gitHead": "f32ba918e4d3ce76c6ee95c856584d00a9d80958"
|
|
47
|
+
"sideEffects": false
|
|
49
48
|
}
|
package/src/FocusRegion.ts
CHANGED
|
@@ -71,17 +71,20 @@ class FocusRegion {
|
|
|
71
71
|
}
|
|
72
72
|
}
|
|
73
73
|
|
|
74
|
-
handleDismiss = (
|
|
74
|
+
handleDismiss = (
|
|
75
|
+
event: React.MouseEvent | React.KeyboardEvent,
|
|
76
|
+
documentClick?: boolean
|
|
77
|
+
) => {
|
|
75
78
|
this._options.onDismiss?.(event, documentClick)
|
|
76
79
|
}
|
|
77
80
|
|
|
78
|
-
captureDocumentClick = (event: MouseEvent) => {
|
|
81
|
+
captureDocumentClick = (event: React.MouseEvent) => {
|
|
79
82
|
const { target } = event
|
|
80
83
|
this._preventCloseOnDocumentClick =
|
|
81
84
|
event.button !== 0 || contains(this._contextElement, target as Node)
|
|
82
85
|
}
|
|
83
86
|
|
|
84
|
-
handleDocumentClick = (event: MouseEvent) => {
|
|
87
|
+
handleDocumentClick = (event: React.MouseEvent) => {
|
|
85
88
|
if (
|
|
86
89
|
this._options.shouldCloseOnDocumentClick &&
|
|
87
90
|
!this._preventCloseOnDocumentClick
|
|
@@ -90,14 +93,14 @@ class FocusRegion {
|
|
|
90
93
|
}
|
|
91
94
|
}
|
|
92
95
|
|
|
93
|
-
handleFrameClick = (event: MouseEvent, frame: HTMLIFrameElement) => {
|
|
96
|
+
handleFrameClick = (event: React.MouseEvent, frame: HTMLIFrameElement) => {
|
|
94
97
|
if (!contains(this._contextElement, frame)) {
|
|
95
98
|
// dismiss if frame is not within the region
|
|
96
99
|
this.handleDismiss(event, true)
|
|
97
100
|
}
|
|
98
101
|
}
|
|
99
102
|
|
|
100
|
-
handleKeyUp = (event: KeyboardEvent) => {
|
|
103
|
+
handleKeyUp = (event: React.KeyboardEvent) => {
|
|
101
104
|
if (
|
|
102
105
|
this._options.shouldCloseOnEscape &&
|
|
103
106
|
event.keyCode === keycode.codes.esc &&
|
|
@@ -130,19 +133,10 @@ class FocusRegion {
|
|
|
130
133
|
|
|
131
134
|
if (this._options.shouldCloseOnDocumentClick) {
|
|
132
135
|
this._listeners.push(
|
|
133
|
-
addEventListener(
|
|
134
|
-
doc,
|
|
135
|
-
'click',
|
|
136
|
-
this.captureDocumentClick as EventListener,
|
|
137
|
-
true
|
|
138
|
-
)
|
|
136
|
+
addEventListener(doc, 'click', this.captureDocumentClick, true)
|
|
139
137
|
)
|
|
140
138
|
this._listeners.push(
|
|
141
|
-
addEventListener(
|
|
142
|
-
doc,
|
|
143
|
-
'click',
|
|
144
|
-
this.handleDocumentClick as EventListener
|
|
145
|
-
)
|
|
139
|
+
addEventListener(doc, 'click', this.handleDocumentClick)
|
|
146
140
|
)
|
|
147
141
|
|
|
148
142
|
Array.from(doc.getElementsByTagName('iframe')).forEach((el) => {
|
|
@@ -151,7 +145,7 @@ class FocusRegion {
|
|
|
151
145
|
if (frameDoc) {
|
|
152
146
|
this._listeners.push(
|
|
153
147
|
addEventListener(frameDoc, 'mouseup', (event) => {
|
|
154
|
-
this.handleFrameClick(event as MouseEvent, el)
|
|
148
|
+
this.handleFrameClick(event as React.MouseEvent, el)
|
|
155
149
|
})
|
|
156
150
|
)
|
|
157
151
|
}
|
|
@@ -159,9 +153,7 @@ class FocusRegion {
|
|
|
159
153
|
}
|
|
160
154
|
|
|
161
155
|
if (this._options.shouldCloseOnEscape) {
|
|
162
|
-
this._listeners.push(
|
|
163
|
-
addEventListener(doc, 'keyup', this.handleKeyUp as EventListener)
|
|
164
|
-
)
|
|
156
|
+
this._listeners.push(addEventListener(doc, 'keyup', this.handleKeyUp))
|
|
165
157
|
}
|
|
166
158
|
|
|
167
159
|
this._active = true
|
|
@@ -22,6 +22,8 @@
|
|
|
22
22
|
* SOFTWARE.
|
|
23
23
|
*/
|
|
24
24
|
|
|
25
|
+
import React from 'react'
|
|
26
|
+
|
|
25
27
|
import type { LiveRegion, UIElement } from '@instructure/shared-types'
|
|
26
28
|
|
|
27
29
|
export type FocusRegionOptions = {
|
|
@@ -29,7 +31,7 @@ export type FocusRegionOptions = {
|
|
|
29
31
|
* Function called when tab focus leaves the focusable content. This only
|
|
30
32
|
* occurs when `shouldContainFocus` is set to false.
|
|
31
33
|
*/
|
|
32
|
-
onBlur?: (event:
|
|
34
|
+
onBlur?: (event: React.UIEvent | React.FocusEvent) => void
|
|
33
35
|
/**
|
|
34
36
|
* Function called when a focus region is dismissed. This can happen when
|
|
35
37
|
* the user presses the escape key and `shouldCloseOnEscape` is true or
|
|
@@ -38,7 +40,10 @@ export type FocusRegionOptions = {
|
|
|
38
40
|
* @param event The event triggered the dismissal
|
|
39
41
|
* @param documentClick Whether the dismissal was triggered by a mouse click.
|
|
40
42
|
*/
|
|
41
|
-
onDismiss?: (
|
|
43
|
+
onDismiss?: (
|
|
44
|
+
event: React.UIEvent | React.FocusEvent,
|
|
45
|
+
documentClick?: boolean
|
|
46
|
+
) => void
|
|
42
47
|
/**
|
|
43
48
|
* An element or a function returning an element to focus by default
|
|
44
49
|
*/
|
|
@@ -189,7 +189,7 @@ class KeyboardFocusRegion {
|
|
|
189
189
|
}
|
|
190
190
|
}
|
|
191
191
|
|
|
192
|
-
handleKeyDown = (event: KeyboardEvent) => {
|
|
192
|
+
handleKeyDown = (event: React.KeyboardEvent) => {
|
|
193
193
|
if (event.keyCode === keycode.codes.tab) {
|
|
194
194
|
scopeTab(this._contextElement, event)
|
|
195
195
|
}
|
|
@@ -230,13 +230,13 @@ class KeyboardFocusRegion {
|
|
|
230
230
|
}
|
|
231
231
|
}
|
|
232
232
|
|
|
233
|
-
handleFirstTabbableKeyDown = (event: KeyboardEvent) => {
|
|
233
|
+
handleFirstTabbableKeyDown = (event: React.KeyboardEvent) => {
|
|
234
234
|
if (event.keyCode === keycode.codes.tab && event.shiftKey) {
|
|
235
235
|
this._options.onBlur?.(event)
|
|
236
236
|
}
|
|
237
237
|
}
|
|
238
238
|
|
|
239
|
-
handleLastTabbableKeyDown = (event: KeyboardEvent) => {
|
|
239
|
+
handleLastTabbableKeyDown = (event: React.KeyboardEvent) => {
|
|
240
240
|
if (event.keyCode === keycode.codes.tab && !event.shiftKey) {
|
|
241
241
|
this._options.onBlur?.(event)
|
|
242
242
|
}
|
|
@@ -248,25 +248,21 @@ class KeyboardFocusRegion {
|
|
|
248
248
|
if (defaultFocusElement || shouldContainFocus) {
|
|
249
249
|
if (shouldContainFocus) {
|
|
250
250
|
this._listeners.push(
|
|
251
|
-
addEventListener(
|
|
252
|
-
this.doc,
|
|
253
|
-
'keydown',
|
|
254
|
-
this.handleKeyDown as EventListener
|
|
255
|
-
)
|
|
251
|
+
addEventListener(this.doc, 'keydown', this.handleKeyDown)
|
|
256
252
|
)
|
|
257
253
|
} else {
|
|
258
254
|
this._listeners.push(
|
|
259
255
|
addEventListener(
|
|
260
256
|
this.firstTabbable || defaultFocusElement!,
|
|
261
257
|
'keydown',
|
|
262
|
-
this.handleFirstTabbableKeyDown
|
|
258
|
+
this.handleFirstTabbableKeyDown
|
|
263
259
|
)
|
|
264
260
|
)
|
|
265
261
|
this._listeners.push(
|
|
266
262
|
addEventListener(
|
|
267
263
|
this.lastTabbable || defaultFocusElement!,
|
|
268
264
|
'keydown',
|
|
269
|
-
this.handleLastTabbableKeyDown
|
|
265
|
+
this.handleLastTabbableKeyDown
|
|
270
266
|
)
|
|
271
267
|
)
|
|
272
268
|
}
|
package/src/scopeTab.ts
CHANGED
package/src/types.ts
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* The MIT License (MIT)
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) 2015 - present Instructure, Inc.
|
|
5
|
+
*
|
|
6
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
|
+
* of this software and associated documentation files (the "Software"), to deal
|
|
8
|
+
* in the Software without restriction, including without limitation the rights
|
|
9
|
+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10
|
+
* copies of the Software, and to permit persons to whom the Software is
|
|
11
|
+
* furnished to do so, subject to the following conditions:
|
|
12
|
+
*
|
|
13
|
+
* The above copyright notice and this permission notice shall be included in all
|
|
14
|
+
* copies or substantial portions of the Software.
|
|
15
|
+
*
|
|
16
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
17
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
18
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
19
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
20
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
21
|
+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
22
|
+
* SOFTWARE.
|
|
23
|
+
*/
|
|
24
|
+
|
|
25
|
+
type FocusRegionElement = Node | Window
|
|
26
|
+
|
|
27
|
+
type FocusRegionOptions = {
|
|
28
|
+
shouldContainFocus: boolean
|
|
29
|
+
liveRegion:
|
|
30
|
+
| FocusRegionElement
|
|
31
|
+
| FocusRegionElement[]
|
|
32
|
+
| (() => FocusRegionElement)
|
|
33
|
+
| (() => FocusRegionElement[])
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export type { FocusRegionElement, FocusRegionOptions }
|
package/tsconfig.build.json
CHANGED
|
@@ -1,8 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"extends": "../../tsconfig.build.json",
|
|
3
3
|
"compilerOptions": {
|
|
4
|
-
"outDir": "./types"
|
|
4
|
+
"outDir": "./types",
|
|
5
|
+
"composite": true,
|
|
6
|
+
"rootDir": "./src"
|
|
5
7
|
},
|
|
6
|
-
"include": ["src
|
|
7
|
-
"exclude": ["src/**/__tests__/**/*"]
|
|
8
|
+
"include": ["src"],
|
|
9
|
+
"exclude": ["src/**/__tests__/**/*"],
|
|
10
|
+
"references": [
|
|
11
|
+
{ "path": "../console/tsconfig.build.json" },
|
|
12
|
+
{ "path": "../ui-a11y-content/tsconfig.build.json" },
|
|
13
|
+
{ "path": "../ui-dom-utils/tsconfig.build.json" },
|
|
14
|
+
{ "path": "../ui-react-utils/tsconfig.build.json" },
|
|
15
|
+
{ "path": "../ui-testable/tsconfig.build.json" },
|
|
16
|
+
{ "path": "../uid/tsconfig.build.json" },
|
|
17
|
+
{ "path": "../ui-babel-preset/tsconfig.build.json" },
|
|
18
|
+
{ "path": "../ui-color-utils/tsconfig.build.json" },
|
|
19
|
+
{ "path": "../ui-test-utils/tsconfig.build.json" }
|
|
20
|
+
]
|
|
8
21
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es6.d.ts","../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../node_modules/typescript/lib/lib.scripthost.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/keycode/index.d.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/scheduler/tracing.d.ts","../../node_modules/@types/react/index.d.ts","../ui-dom-utils/types/addEventListener.d.ts","../ui-dom-utils/types/addInputModeListener.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/CommonProps.d.ts","../shared-types/types/CommonTypes.d.ts","../shared-types/types/UtilityTypes.d.ts","../shared-types/types/index.d.ts","../ui-dom-utils/types/addPositionChangeListener.d.ts","../ui-dom-utils/types/addResizeListener.d.ts","../ui-dom-utils/types/canUseDOM.d.ts","../ui-dom-utils/types/contains.d.ts","../ui-dom-utils/types/containsActiveElement.d.ts","../ui-dom-utils/types/elementMatches.d.ts","../ui-dom-utils/types/findDOMNode.d.ts","../ui-dom-utils/types/findFocusable.d.ts","../ui-dom-utils/types/findTabbable.d.ts","../ui-dom-utils/types/getActiveElement.d.ts","../ui-dom-utils/types/getBoundingClientRect.d.ts","../ui-dom-utils/types/getClassList.d.ts","../ui-dom-utils/types/getComputedStyle.d.ts","../ui-dom-utils/types/getFontSize.d.ts","../ui-dom-utils/types/getOffsetParents.d.ts","../ui-dom-utils/types/getScrollParents.d.ts","../ui-dom-utils/types/handleMouseOverOut.d.ts","../ui-dom-utils/types/isActiveElement.d.ts","../ui-dom-utils/types/isVisible.d.ts","../ui-dom-utils/types/ownerDocument.d.ts","../ui-dom-utils/types/ownerWindow.d.ts","../ui-dom-utils/types/requestAnimationFrame.d.ts","../ui-dom-utils/types/transformSelection.d.ts","../ui-dom-utils/types/matchMedia.d.ts","../ui-dom-utils/types/index.d.ts","../uid/types/uid.d.ts","../uid/types/index.d.ts","../console/types/console.d.ts","../console/types/macro.d.ts","../console/types/index.d.ts","./src/FocusRegionOptions.ts","./src/ScreenReaderFocusRegion.ts","./src/scopeTab.ts","./src/KeyboardFocusRegion.ts","./src/FocusRegion.ts","./src/FocusRegionManager.ts","../ui-react-utils/types/callRenderProp.d.ts","../ui-react-utils/types/ComponentIdentifier.d.ts","../ui-react-utils/types/deprecated.d.ts","../ui-react-utils/types/ensureSingleChild.d.ts","../ui-react-utils/types/experimental.d.ts","../ui-react-utils/types/hack.d.ts","../ui-react-utils/types/getDisplayName.d.ts","../ui-react-utils/types/getElementType.d.ts","../ui-react-utils/types/getInteraction.d.ts","../ui-react-utils/types/matchComponentTypes.d.ts","../ui-react-utils/types/omitProps.d.ts","../ui-react-utils/types/passthroughProps.d.ts","../ui-react-utils/types/pickProps.d.ts","../ui-react-utils/types/safeCloneElement.d.ts","../ui-react-utils/types/windowMessageListener.d.ts","../ui-react-utils/types/index.d.ts","../ui-a11y-content/types/AccessibleContent/props.d.ts","../ui-a11y-content/types/AccessibleContent/index.d.ts","../ui-a11y-content/types/PresentationContent/props.d.ts","../ui-a11y-content/types/PresentationContent/index.d.ts","../../node_modules/@emotion/react/node_modules/@emotion/utils/types/index.d.ts","../../node_modules/@emotion/react/node_modules/@emotion/cache/types/index.d.ts","../../node_modules/@emotion/react/node_modules/@emotion/serialize/types/index.d.ts","../../node_modules/@emotion/react/types/jsx-namespace.d.ts","../../node_modules/@emotion/react/types/helper.d.ts","../../node_modules/@emotion/react/types/theming.d.ts","../../node_modules/@emotion/react/types/index.d.ts","../emotion/types/EmotionTypes.d.ts","../emotion/types/EmotionThemeProvider/index.d.ts","../emotion/types/InstUISettingsProvider/index.d.ts","../emotion/types/withStyle.d.ts","../emotion/types/styleUtils/ThemeablePropValues.d.ts","../emotion/types/styleUtils/ThemeablePropTypes.d.ts","../emotion/types/styleUtils/makeThemeVars.d.ts","../emotion/types/styleUtils/getShorthandPropValue.d.ts","../emotion/types/styleUtils/mirrorShorthand.d.ts","../emotion/types/styleUtils/mirrorShorthandCorners.d.ts","../emotion/types/styleUtils/mirrorShorthandEdges.d.ts","../emotion/types/styleUtils/index.d.ts","../emotion/types/index.d.ts","../ui-a11y-content/types/ScreenReaderContent/props.d.ts","../ui-a11y-content/types/ScreenReaderContent/index.d.ts","../ui-a11y-content/types/index.d.ts","./src/hasVisibleChildren.ts","./src/index.ts","./src/types.ts","../../node_modules/@types/babel__generator/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/babel-plugin-macros/index.d.ts","../../node_modules/@types/braces/index.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/@types/keyv/index.d.ts","../../node_modules/@types/http-cache-semantics/index.d.ts","../../node_modules/@types/responselike/index.d.ts","../../node_modules/@types/cacheable-request/index.d.ts","../../node_modules/@types/chai/index.d.ts","../../node_modules/@types/chai-as-promised/index.d.ts","../../node_modules/@types/chai-string/index.d.ts","../../node_modules/@types/codemirror/index.d.ts","../../node_modules/@types/color-name/index.d.ts","../../node_modules/@types/color-convert/conversions.d.ts","../../node_modules/@types/color-convert/route.d.ts","../../node_modules/@types/color-convert/index.d.ts","../../node_modules/@types/component-emitter/index.d.ts","../../node_modules/@types/cookie/index.d.ts","../../node_modules/@types/cors/index.d.ts","../../node_modules/@types/decompress/index.d.ts","../../node_modules/@types/dirty-chai/index.d.ts","../../node_modules/@types/got/index.d.ts","../../node_modules/@types/download/index.d.ts","../../node_modules/@types/escape-html/index.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/git-url-parse/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/glob/index.d.ts","../../node_modules/@types/glob-base/index.d.ts","../../node_modules/@types/unist/index.d.ts","../../node_modules/@types/hast/index.d.ts","../../node_modules/@types/hoist-non-react-statics/index.d.ts","../../node_modules/@types/html-minifier-terser/index.d.ts","../../node_modules/@types/http-proxy/index.d.ts","../../node_modules/@types/is-function/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/json-stable-stringify/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/karma/node_modules/log4js/types/log4js.d.ts","../../node_modules/@types/karma/lib/constants.d.ts","../../node_modules/@types/karma/index.d.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/@types/markdown-to-jsx/index.d.ts","../../node_modules/@types/mdast/index.d.ts","../../node_modules/@types/micromatch/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/mocha/index.d.ts","../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts","../../node_modules/@types/node-fetch/externals.d.ts","../../node_modules/@types/node-fetch/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/npmlog/index.d.ts","../../node_modules/@types/overlayscrollbars/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/parse5/index.d.ts","../../node_modules/@types/pretty-hrtime/index.d.ts","../../node_modules/@types/qs/index.d.ts","../../node_modules/@types/reach__router/index.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/react-syntax-highlighter/index.d.ts","../../node_modules/@types/resolve/index.d.ts","../../node_modules/@types/scheduler/index.d.ts","../../node_modules/@types/semver/classes/semver.d.ts","../../node_modules/@types/semver/functions/parse.d.ts","../../node_modules/@types/semver/functions/valid.d.ts","../../node_modules/@types/semver/functions/clean.d.ts","../../node_modules/@types/semver/functions/inc.d.ts","../../node_modules/@types/semver/functions/diff.d.ts","../../node_modules/@types/semver/functions/major.d.ts","../../node_modules/@types/semver/functions/minor.d.ts","../../node_modules/@types/semver/functions/patch.d.ts","../../node_modules/@types/semver/functions/prerelease.d.ts","../../node_modules/@types/semver/functions/compare.d.ts","../../node_modules/@types/semver/functions/rcompare.d.ts","../../node_modules/@types/semver/functions/compare-loose.d.ts","../../node_modules/@types/semver/functions/compare-build.d.ts","../../node_modules/@types/semver/functions/sort.d.ts","../../node_modules/@types/semver/functions/rsort.d.ts","../../node_modules/@types/semver/functions/gt.d.ts","../../node_modules/@types/semver/functions/lt.d.ts","../../node_modules/@types/semver/functions/eq.d.ts","../../node_modules/@types/semver/functions/neq.d.ts","../../node_modules/@types/semver/functions/gte.d.ts","../../node_modules/@types/semver/functions/lte.d.ts","../../node_modules/@types/semver/functions/cmp.d.ts","../../node_modules/@types/semver/functions/coerce.d.ts","../../node_modules/@types/semver/classes/comparator.d.ts","../../node_modules/@types/semver/classes/range.d.ts","../../node_modules/@types/semver/functions/satisfies.d.ts","../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../node_modules/@types/semver/ranges/min-version.d.ts","../../node_modules/@types/semver/ranges/valid.d.ts","../../node_modules/@types/semver/ranges/outside.d.ts","../../node_modules/@types/semver/ranges/gtr.d.ts","../../node_modules/@types/semver/ranges/ltr.d.ts","../../node_modules/@types/semver/ranges/intersects.d.ts","../../node_modules/@types/semver/ranges/simplify.d.ts","../../node_modules/@types/semver/ranges/subset.d.ts","../../node_modules/@types/semver/internals/identifiers.d.ts","../../node_modules/@types/semver/index.d.ts","../../node_modules/@sinonjs/fake-timers/types/fake-timers-src.d.ts","../../node_modules/@types/sinon/index.d.ts","../../node_modules/@types/sinon-chai/node_modules/@types/sinon/index.d.ts","../../node_modules/@types/sinon-chai/index.d.ts","../../node_modules/@types/sizzle/index.d.ts","../../node_modules/@types/source-list-map/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/tapable/index.d.ts","../../node_modules/@types/tern/lib/tern/index.d.ts","../../node_modules/@types/tern/lib/infer/index.d.ts","../../node_modules/@types/tern/index.d.ts","../../node_modules/@types/tinycolor2/index.d.ts","../../node_modules/source-map/source-map.d.ts","../../node_modules/@types/uglify-js/index.d.ts","../../node_modules/vfile-message/types/index.d.ts","../../node_modules/@types/vfile/index.d.ts","../../node_modules/@types/webpack/node_modules/anymatch/index.d.ts","../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts","../../node_modules/@types/webpack-sources/lib/Source.d.ts","../../node_modules/@types/webpack-sources/lib/CompatSource.d.ts","../../node_modules/@types/webpack-sources/lib/ConcatSource.d.ts","../../node_modules/@types/webpack-sources/lib/OriginalSource.d.ts","../../node_modules/@types/webpack-sources/lib/PrefixSource.d.ts","../../node_modules/@types/webpack-sources/lib/RawSource.d.ts","../../node_modules/@types/webpack-sources/lib/ReplaceSource.d.ts","../../node_modules/@types/webpack-sources/lib/SizeOnlySource.d.ts","../../node_modules/@types/webpack-sources/lib/SourceMapSource.d.ts","../../node_modules/@types/webpack-sources/lib/index.d.ts","../../node_modules/@types/webpack-sources/lib/CachedSource.d.ts","../../node_modules/@types/webpack-sources/index.d.ts","../../node_modules/@types/webpack/index.d.ts","../../node_modules/@types/webpack-env/index.d.ts","../../node_modules/@types/which/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts"],"fileInfos":["721cec59c3fef87aaf480047d821fb758b3ec9482c4129a54631e6e25e432a31",{"version":"aa9fb4c70f369237c2f45f9d969c9a59e0eae9a192962eb48581fe864aa609db","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"e54c8715a4954cfdc66cd69489f2b725c09ebf37492dbd91cff0a1688b1159e8","affectsGlobalScope":true},{"version":"e34eb9339171ec45da2801c1967e4d378bd61a1dceaa1b1b4e1b6d28cb9ca962","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"51b8b27c21c066bf877646e320bf6a722b80d1ade65e686923cd9d4494aef1ca","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"2c8c5ee58f30e7c944e04ab1fb5506fdbb4dd507c9efa6972cf4b91cec90c503","affectsGlobalScope":true},{"version":"2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"9f1817f7c3f02f6d56e0f403b927e90bb133f371dcebc36fa7d6d208ef6899da","affectsGlobalScope":true},{"version":"4632665b87204bb1caa8b44d165bce0c50dfab177df5b561b345a567cabacf9a","affectsGlobalScope":true},"538a308e0d54a993e3a86a460d3498278960f5c412619b086b97a94a7aa8cfa5",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"381899b8d1d4c1be716f18cb5242ba39f66f4b1e31d45af62a32a99f8edcb39d","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"1bc82f5b3bb93df76d19730c84467b0b346187198537135d63a672956f323720","affectsGlobalScope":true},"1a636155a940208c321fbf61d1659152c9c50de41a65af052a4345f290dd1de1","ce96d6a847622aba06ac0195bf6bf44478f90d063e2c2040cf9338217f47a096","4e720504aef76fbcee2d511d7787073c4b596572885571e31c00ce7c73246d41","22059a0bc69fbf547d07b7fdcc1acce72494c588d66f785a6d73862c96eff4eb","e3fe70a7ce666fc032db19f0e899113646701628ebec023d45d863f0d3e48388","c383e81ebc770b74246a994f6adeaa225b6cbefbb2295deb268ec6c291e89ee8","3a3ae5156325111e8708edd12384166c6a96faed172ae3f13705e64c13edbefc","fb109efa7d17ff891cf6cfa048219c135e77b1df288ed16812ce97f1252b248e","b25c3724e5b709e383c04ae7a6fa2938aec5eecc124835bed0cd360306f4d409","78bc6ece12d64ca3c76ab5751783ea3e83725b978b68519af8f53671c5759a1c","5cd55f8f226e0e190027e2e01304529b3243bfdf6cb0235b8cdb0f3638f02eaf","a0d98ad7e510d1c92993651188472243ac3bfa5369277c8cc972c07f6bfc4bc8","ae9527126a75764a6b32b4f9abb4690aad1c215e51235120f3fd32720f20183f","84f454cb00549e005cd05c38e6ffbe4cee24551a59a6572b8b2f040ec8e78d86","04db4dce29d29e2b9b79ff1d6705baea03868b8a3d896162138bf55ed8718bbb","2af02de9e195be5dbd9d1fa2069941d1d7975734edde482a071aad3eefd9e8e5","c28c64c9830e5410ad4de309907bb4485a9477e170dbc5afb12d0fa9afe00f05","6ea18de7c3c195f266efa02a8f7624a4acd8a95d26cf0d74892c3a767b570f36","b6859693bf5723b7e0da39e851f63cbab22324a53debda82f3c8939c94e67f93","74bfa457310f10c292d63add66e4c24b70fc9cb86630ca32ecd63f956b31b6ed","3c11b44b957be7e811d89262c4b94f3f8f12f8c0d5591f1c8317e12510f6c392","f20cb6bd33ae6c587d94d8c4709f347dd3294787b07e20cd1d5f1848195ad645","65283669693183084f9b9a87471e0b635f4b26cf521c50817793018c3abb5e15","207fe7aa4ece1bc4edc3e349f9e6b7039ba0d490946049a5b899dc4d14920101","1aeeb25cb550ab6d50e97db6949e9ea995c364a8d74e088f0840bbf3661a5b4a","c45b6a6a4cfbcd7481ee6e4da3e86a875501ff0156c4bc4056c1fde0f3106b23","cb1375d9737603e513105ca65128fbd65c216a9355f8c3f6889be63f0818a5ac","03d9a1f153ab37226ec41c40ca3b511f3369df5dc8c8fd5984d2a3b6c0cb52b9","86e1310174a792ec5fbe4d440273eb454d74f31ecce9f36f9a484c4b5257bc9d","5022974758591e30e4e89045ef27d76c6cb24c98e5491235ce450bd394239a9c","faebb9e7239939a106f651fddb55f917b635d5736afd541027b66c2861059fb2","3f975909e5ae887944ee9b0fdc7917cd69cda85552d13eff08f1f2c4599cf485","6ee96a886c03573845ef4f128582ce1a95e7c0c7389e2d72f8d2efd99855ec5f","7ba59cff981e342cbba3449f65b3c0e8cca552770e03b687db3c2bab2f84612d","100ff9f09712045fedf37fe2c7a173a60c564a2f562bf341116c53aa3aeaecf5","ebf7f14ceeeb9b444de5c8cbb2fb483c9634cd4f6ee88e16ed367a732feaefcf","5ae55f7b1bc3f711d20c3ec13a85b7df662a26d0ac7060f57821cbde72087bea","096aa55b256f3d96a01ff91cf1248cbc462597aaffba4de3037dc16677c9dc35","d5dc194a79159a5811c99c13c26db7e0377bc8d51022f7897e03528f7b905305","22916c51ce55bcb3498785c4c3fe9490c9376e4bf0f8cc46fcf1cc75ebacac87","d3be83f746dcc3885586dfa5f14e3224dabcc55de1785cbf831e05a2bdc60032","94b7a6e570722df24e576dc634c9c53031b37153fd9244f441d354d83b1e9375","966470e06e69639278240f07c795aa40989c75011875931925f43ecfae57f292","dd6d6eebf0a5fb186a8f19146ae11bd9514bd17f24d713dc858721dbb9665659","1f7c7be66fea93004752c0a80e45b45dccfb46d7a07e003cfc7ffbe19a7b887b","76acfbe38f4e4de9191bfbdc172de6d2f27d60e92b16f983a5578a5f0d4987c4","d4834531347055616df4b0393118c612aa0bba125c4d815d592076ebe9c4e5c8","41e48599506894d01c8974ae4b37e5ae89cd630f6550c407457b0381671a1bd1","a6cf909350d69fe06499618fb34822b452af5544ca7bbc1e46400f9e7423e388","507ed23f7259058415848162fb2d1c88a173ec6d5c3aae2e58ee3ebcaa09ce3f","c147327465a035b4627249c355bd241e017949f8766e97c0d2c6ba5c30009d49","5cdf9f0abb651816bf27dffc7f934a8da7635f0886076b23fbebbe127da2f180","b57db621a6662391fad2667583af66f37183d39b78003d78489d730ba4e2c851","3256b8ac0e96aeafacee33856f42f56347324a8850a7a83626df185291efdb28","055d73a9b0eee13be22cac046d8aa5c132ef7c285cb4d2dd1b3dc3383f217557","b416c261720a63c07b05f49bc3d3dac078a16301c5a1b2c983fffcd177b965d5","304eb84596391315305e707394e43528d4ddb3f0ee4eeedb82eb3d5ffc95d25d","0cb572c52e4addd85f5e58ffa192d15149ce16316d41f2c89d2a2eefba932f57","d152321268a5437a8fb6e962ae04b53d13d7f00338c3b1b42ecd505fd96afe94","04576949b80fd102a2bd07d3e01ef4b9b36d7915ba13c166cad7ae2783c7119b","a29a22cd1ecee2f28e80679fd732fdf9d7d91b65aea71336e32cf0786212dc71","dcd7b9f05a5699258b62964fc0e8cdb1be4822ac09b5bbe2568479693bbe32ba","e2b3da71a019fb05ef1a327c3e7e1f42119a5581dd091ddd280e4e2ef04f6855","e397b0fab8a813e44d73b2bf4dd24821d70826ae66fc7b4bdc646a328972acff","0e93411189d2f14ce13dcf3740cc83489d579e0a8db31600197924af7fba7e6b","da7d802ff88085d7e780bb206b47c30a350598db7421e031521213a2196936c3","4b46f4712ae966996b2cc81949d482063887c55478706e25d942482a44b99b71","03d59e612afdc3039a83b12d45b026306b291cfc8e2fc72859f7902b8a857caf","93b24ca76698e62732d72800da132367639a4426363c821338bbbd7cf6b64443","ecfa9ce3a5a37d15b813065e8a7cdf677a0f493018e47ce59815443dfbb9c910","83e56d3337e1a6dbafdbe5a2502a84c330b1a328ed2860d689b2ded82b1f5c95","e630f8a3c49d5db0a8af774799abdb8f19675b940a6cfa25eca35e5280709f28","413c03b679ca5bbe6456b8a38ac999fffb3834d0e4a9638bd186533d629ab8cb","6c023023562b78555d7061de64f5cc84ac140a283abc8b1ac5fa407816f1ad09","34e1b35125c2be711e51df8eecb7b9d1de2e6e32204d7e3106f1ea8e9bcd3a49","5b0d69e9ae4557cf31e51dbdfeccef34ce5a12c837a9a5ed101a13f56e479052","dcafc3d7b14b2d62be06aec141a794d416babf5c1869f33fe30ad9f3da27f93e","648e09f0fc67a5cf40b569f21715dc902a0871e7e1834e663cb365e34df11149","e259f370902d2cddcae6ef20699370758646ab5165f400e95c077e04cb3c7ccf","b120ab27e1e24ec5c6838d4201f84806c4ebf948942de50e51a594cbbb63cd49","6e6eed52e8dd1c66ee42d80d748c29129efcc91b48bd52b57353f79e18118412","8e6a14993e27440402593030a1eb0a4c50ff287a3e33391444a220ac567289a2","07aa5f3c1784f0ceffef3b80df3bdc68c5ba6b55ee8e0057af2d1d769db659cb","0a16257edb376c28a3765354f827aec559c3cedb44e61b321e68050728744533","d19e26cf09d0cc3678fae9489b62464fdd1543fa53332a92e55e2a19b6ede6b3","b9cb6cbb63e9c3a0b769d697265e6d9166b9e8018094c71c45a8afc3fbbb97c6","53f147018d879269b972a2040556e8cddb22d9102a0721a4504775ecfb059a93","fbe41dce079bd6303e42620c0d0760d44e5be8c67ae8c1b92bd1ea5acb269d5f","fe5389d844a9579e0aa2c23f2ef671f68bfa22a073caf271f29107f6f527b2a9","a593bf7c4fe699038e74b85c78f91b1de7f1ac33b777dbd6459f724febe9569e","b2d5d9adbbc9835f947ba940f2dfdf7ba4b788392f6901abc2ae35385e22aba5","bec09356f327190c51b1a7132cf777c66d778c22f1aba9309efb94868ead32ba","98f40132aab59240e3daa408377a6f779aa81f4340f4451959cd2eba3750e456","8dfed5c91ad36e69e6da6b7e49be929d4e19666db2b651aa839c485170a2902c","272c2dac4baaf7fdd2d7efeef0fa2547af54cc21883c5e138b8c4d1661697a54","4aaf84a5ac87bad3211f041fab85de5cc42e5954c3ed56842faf6f08167e6202","98f40132aab59240e3daa408377a6f779aa81f4340f4451959cd2eba3750e456","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","98f40132aab59240e3daa408377a6f779aa81f4340f4451959cd2eba3750e456","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","98f40132aab59240e3daa408377a6f779aa81f4340f4451959cd2eba3750e456","71c56bdaa82d7ce75a72d3c06c04fe10becec09bd9c4ef21776a2a055d3f428e","063857f728dfa41428c5a9a4a243e6bfb3a9e046916ce0fe9f864da9401c7d2f","40304c033bb6e39f0eb01b106d29523950148dfc3cd547ddb500167871171281","0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"92d63add669d18ebc349efbacd88966d6f2ccdddfb1b880b2db98ae3aa7bf7c4","affectsGlobalScope":true},"ccc94049a9841fe47abe5baef6be9a38fc6228807974ae675fb15dc22531b4be",{"version":"9acfe4d1ff027015151ce81d60797b04b52bffe97ad8310bb0ec2e8fd61e1303","affectsGlobalScope":true},"95843d5cfafced8f3f8a5ce57d2335f0bcd361b9483587d12a25e4bd403b8216","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","2f520601649a893e6a49a8851ebfcf4be8ce090dc1281c2a08a871cb04e8251f","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","2b8c764f856a1dd0a9a2bf23e5efddbff157de8138b0754010be561ae5fcaa90","76650408392bf49a8fbf3e2b6b302712a92d76af77b06e2da1cc8077359c4409","0af3121e68297b2247dd331c0d24dba599e50736a7517a5622d5591aae4a3122","6972fca26f6e9bd56197568d4379f99071a90766e06b4fcb5920a0130a9202be",{"version":"4a2628e95962c8ab756121faa3ac2ed348112ff7a87b5c286dd2cc3326546b4c","affectsGlobalScope":true},"6dfd135b38ab97c536d9c966fc5a5a879a19c6ed75c2c9633902be1ef0945ff7","a049a59a02009fc023684fcfaf0ac526fe36c35dcc5d2b7d620c1750ba11b083","5533392c50c51b1a5c32b89f13145db929c574ef1c5949cf67a074a05ea107d9","b287b810b5035d5685f1df6e1e418f1ca452a3ed4f59fd5cc081dbf2045f0d9b","4b9a003b5c556c96784132945bb41c655ea11273b1917f5c8d0c154dd5fd20dd","a458dc78104cc80048ac24fdc02fe6dce254838094c2f25641b3f954d9721241",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"902cd98bf46e95caf4118a0733fb801e9e90eec3edaed6abdad77124afec9ca2","abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","cd4854d38f4eb5592afd98ab95ca17389a7dfe38013d9079e802d739bdbcc939","94eed4cc2f5f658d5e229ff1ccd38860bddf4233e347bf78edd2154dee1f2b99",{"version":"bd1a08e30569b0fb2f0b21035eb9b039871f68faa9b98accf847e9c878c5e0a9","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","d7838022c7dab596357a9604b9c6adffe37dc34085ce0779c958ce9545bd7139","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"a279435e7813d1f061c0cab6ab77b1b9377e8d96851e5ed4a76a1ce6eb6e628f","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637",{"version":"b42b47e17b8ece2424ae8039feb944c2e3ba4b262986aebd582e51efbdca93dc","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","2408611d9b4146e35d1dbd1f443ccd8e187c74614a54b80300728277529dbf11","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4","d88ecca73348e7c337541c4b8b60a50aca5e87384f6b8a422fc6603c637e4c21","badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"1cdb8f094b969dcc183745dc88404e2d8fcf2a858c6e7cc2441011476573238e","4a8b6680f577878255690971bbfe6ec951ece19a0c86a493e66a715762d04db2","cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562",{"version":"869fd852e410d8e80374824d723ed5ef893ed37579c04ceb9d6190223a54e1af","affectsGlobalScope":true},{"version":"f6ae17283c6912c202004178339d6d22f8c9edfe4e335f9f11b555c631633daf","affectsGlobalScope":true},{"version":"41071d2f1a39386d10bf36d1ba4712ad42a900047f16a109936df9e48f13673e","affectsGlobalScope":true},"4ff816bca793da4d9874123906772ef225619980908e25fd5d40475e12651be0","f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e","92450d617e92f96354d281c8ed5613fd16cacea79eb60b1e9736494b3c057e69","8a9086357fe289efb682dc925358f30b6312c7219a5ca92212857a0a79612012","92bc42ed0e2d41559513fd457ee30d834c2f0fedb9ed5004c029cbf0ad2f8bd9","567a315b240a060518c532d38a46803b6d35e75dc14a9be435b6dc20c816741e","117ffeecf6c55e25b6446f449ad079029b5e7317399b0a693858faaaea5ca73e","6fbd58e4015b9ae31ea977d4d549eb24a1102cc798b57ec5d70868b542c06612","825080a15a8b14b40ac8c7f90c12a5a11efb0b3857dc02195eae2a3dc98aea14",{"version":"5849dc8dc641e09624b923c5efd78206d48903a68944124051d18ae8117cb475","affectsGlobalScope":true},"8f76c6bfb627f38ab44c35d1915dfa2d24d4b96307d9b6cc56df5bba246a3ab6","265aa5dae437b70cc82626488e3e68747e80fddeccc89ef47205b4dcaf864f47","81f6af9b1d8e4f9e3b7318763a1a93f909ee61e0477b41cc7f3281d9da6ca7f4","7d7c8ef7d48a035142c07dae60545ecc0e4af4c337742760cb09726f2f8e31db","5469833e9e4eba5e382f9fad09f48eb2cfd133111694887fbcc120140601310c","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","d1ae472dde31ac39e68d52e1e21dcccba3989d146b7b8472f03525d0caad1775","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","3d2cd8f3047fff04a71e7037a6a4cb9f4accb28dbd8c0d83164d414811025af0","bfe1b52cf71aea9bf8815810cc5d9490fa9617313e3d3c2ee3809a28b80d0bb4","70b34c8420d6226ed565d55f47fe04912d0ca0ad128825c5a06e018a3498db32","090ca38de36da6946266ef9057295341b6499c2fad4fe441afa50b2e864846b0","de1d6e224048139baf7494237a9231be6bab9e990fb239c7825bfd38b06d8c90","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","029769d13d9917e3284cb2356ed28a6576e8b07ae6a06ee1e672518adf21a102","0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","626520302b2c8880e9eaa3a6a12022cc8b577a32e4d903aef85e3dd275063da4","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","753391328df8a591c71aea03b21aae20fddfda47778d5dcbb0a0b24a44b76d1b","add2b97bb56259dccf5ec3760a6eb1f97f0d84ef06779630cb21536ac8e01b06","ed61b2eb8e76abd015c280a448724e483f8c4c1a244548054116185cb031236e","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","378df8bbbb9e3f6fca05d58f644aab538e1062eab5e778fb0b83d41125df246d","d88a479cccf787b4aa82362150fbeba5211a32dbfafa7b92ba6995ecaf9a1a89","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","6ac6f24aff52e62c3950461aa17eab26e3a156927858e6b654baef0058b4cd1e",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"9c138947e4cf970491111d971aa615db8353c7f0efc72bd84d8ad6e4743079c5","2a2e2c6463bcf3c59f31bc9ab4b6ef963bbf7dffb049cd017e2c1834e3adca63","1a255ad66d2b50f7b42eca69228b9587878cf06900780ad57a306a933c6eaeb4","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05",{"version":"5f186a758a616c107c70e8918db4630d063bd782f22e6e0b17573b125765b40b","affectsGlobalScope":true},"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","062bd2910098fc059ba93e347649b3e126c555f7b144033d21d3f8ef63d3e39b","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","fda7ad096a1619fbae01b3d869cc82e29116f22be50133ac8fb08cee21279acd","9751247ee3bbcf1c63592f0f4dafb44559680b2b3e5736b7f0578c6a737d74c8","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","c555dd691dd05955e99cd93dd99c685a65e5287813ccb5e6bfde951183248e26","c0a3ea3aee13c4946a6aefce3a6ab9292a40a29f6622cde0fda0b1067a1a1f5f","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc","94a274c882504de552300fc5d6be141820041e9e2c530064ea10a0b76e2f905f","45a63e17814c570ea59407f231ef9c561510bd6edb36f17479b09b44619496c6",{"version":"cffd3848b7af4922d70028c805b7df5e8f0eac4a8d2410b0f55b47ca62c6c3a8","affectsGlobalScope":true},"8a19491eba2108d5c333c249699f40aff05ad312c04a17504573b27d91f0aede","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","d9e55d93aa33fad61bd5c63800972d00ba8879ec5d29f6f3bce67d16d86abc33","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a","c544d81603149987796b24cca297c965db427b84b2580fb27e52fb37ddc1f470","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","9eb2875a1e4c583066af7d6194ea8162191b2756e5d87ccb3c562fdf74d06869","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","6eef5113135a0f2bbac8259909a5bbb7666bcde022c28f4ab95145623cbe1f72","058b8dd97b7c67b6bf33e7bda7b1e247b019b675d4b6449d14ac002091a8b4f8","89c8a7b88c378663a8124664f2d9b8c2887e186b55aa066edf6d67177ca1aa04","5a30ba65ad753eb2ef65355dbb3011b28b192cb9df2ef0b5f595b51ca7faf353","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","86d425f7fcd8d100dafa6286cc289af88cbb639ecbdbd25c3018a8f0f7b09fe5","9795e0a3a45d5b6f1a791ee54b7c8b58bc931e8900966cea2dff9c5bae56073b","5890be29879d02424b7654f40592915189034948f7a18c5ad121c006d4e92811","0ab49086f10c75a1cb3b18bffe799dae021774146d8a2d5a4bb42dda67b64f9b","81c77839e152b8f715ec67b0a8b910bcc2d6cf916794c3519f8798c40efd12ac","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","464843c00fb3dd4735b28255c5c9fe713f16b8e47a3db09ba1647687440f7aef","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","d0f6d36b2d86f934560c48d8bfdc7ab60c67cfb2ab6dc1916706aa68e83d6dc2","6b40029289530423f407a22755c85b81740f9acfd88d2b53564f8c1657c26660","50a5b297e6c91df4f6068d98467a5e7ba4eeb888b9376757734dd4b1dfcdacd4","15b043358a9bac56ee6a567d61adf545b3a09e2f2ead9c3ef3cc617ed3522e71",{"version":"b98f6185455945922c7cfdad772ec1c46e5c169a2d71aca6530e041f77665f03","affectsGlobalScope":true},"ec89427601297d439c961528832a75017d9356bec2ee42c1d16f2274590d9330","67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae","41422586881bcd739b4e62d9b91cd29909f8572aa3e3cdf316b7c50f14708d49","3833c70307dc3d2b46cb6f2a8b6a90e4d7e7367a21ab18c481d7de0909a43e67","0ad2a04de2246300db5468491b6d76f1f8de510822eaa0c89b46ada60f4f2cbe","7c1e19aaac1f980bf5842da2f40b19b50aa5d9429be97384a82219680ef70498","8868835a248a95ee97085831014d989ccfc87c0bc3dcffc2d628809d9648815f","a2f6708415475f137756bd1761d6003d72ed646af52ace1cb4e6f11b34ce2047","2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","9d74c7330800b325bb19cc8c1a153a612c080a60094e1ab6cfb6e39cf1b88c36","eb09cf44043f7d6e0208dca6f0555207015e91fff5ff77b9c21d63672f7d68d5","6f56706c6828d0299f46f8b1a79ecae0757b91b48e63baf6f0c5292d02037129","4fb0b7d532aa6fb850b6cd2f1ee4f00802d877b5c66a51903bc1fb0624126349","b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9","8560a87b2e9f8e2c3808c8f6172c9b7eb6c9b08cb9f937db71c285ecf292c81d","ffe3931ff864f28d80ae2f33bd11123ad3d7bad9896b910a1e61504cc093e1f5","083c1bd82f8dc3a1ed6fc9e8eaddf141f7c05df418eca386598821e045253af9","274ebe605bd7f71ce161f9f5328febc7d547a2929f803f04b44ec4a7d8729517","6ca0207e70d985a24396583f55836b10dc181063ab6069733561bfde404d1bad","5908142efeaab38ffdf43927ee0af681ae77e0d7672b956dfb8b6c705dbfe106","f772b188b943549b5c5eb803133314b8aa7689eced80eed0b70e2f30ca07ab9c","0026b816ef05cfbf290e8585820eef0f13250438669107dfc44482bac007b14f","05d64cc1118031b29786632a9a0f6d7cf1dcacb303f27023a466cf3cdc860538","e0fff9119e1a5d2fdd46345734126cd6cb99c2d98a9debf0257047fe3937cc3f","d84398556ba4595ee6be554671da142cfe964cbdebb2f0c517a10f76f2b016c0","e275297155ec3251200abbb334c7f5641fecc68b2a9573e40eed50dff7584762","b2f006ee835f315d01c43c0f5d9e9ad78a5870b380899877b32a33078d065dbd",{"version":"3a1e422f919c70fca66e94dc641ad8d9732b3d2533ac047b8a9aaca9eea3aa10","affectsGlobalScope":true},"4a17452616730089378f7018860f0a8db04cb5f2efc6884bebd966da8b0002ab","f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2","d9f5e2cb6bce0d05a252e991b33e051f6385299b0dd18d842fc863b59173a18e"],"options":{"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"experimentalDecorators":true,"jsx":2,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./types","rootDir":"./src","skipLibCheck":true,"strict":true,"target":2},"fileIdsList":[[144,197],[197],[116,197],[46,116,197],[49,197],[49,117,118,119,120,121,197],[49,118,122,197],[49,120,122,197],[151,197],[142,143,145,147,149,197],[142,197],[142,145,197],[169,172,196,197,204,205,206,207],[197,209],[197,213],[197,214,215],[197,214],[172,197],[197,204],[197,209,210],[186,197,204,220,222],[169,170,197,204,227],[172,174,186,196,197,204],[197,230],[169,172,174,177,186,196,197,204],[197,236],[197,236,237],[169,174,197,204,242,243],[169,197,204],[197,245,247,248,249,250,251,252,253,254,255,256,257],[197,245,246,248,249,250,251,252,253,254,255,256,257],[197,246,247,248,249,250,251,252,253,254,255,256,257],[197,245,246,247,249,250,251,252,253,254,255,256,257],[197,245,246,247,248,250,251,252,253,254,255,256,257],[197,245,246,247,248,249,251,252,253,254,255,256,257],[197,245,246,247,248,249,250,252,253,254,255,256,257],[197,245,246,247,248,249,250,251,253,254,255,256,257],[197,245,246,247,248,249,250,251,252,254,255,256,257],[197,245,246,247,248,249,250,251,252,253,255,256,257],[197,245,246,247,248,249,250,251,252,253,254,256,257],[197,245,246,247,248,249,250,251,252,253,254,255,257],[197,245,246,247,248,249,250,251,252,253,254,255,256],[153,197],[172,196,197,204,263,264],[172,186,197,204],[154,197],[157,197],[158,163,197],[159,169,170,177,186,196,197],[159,160,169,177,197],[161,197],[162,163,170,178,197],[163,186,193,197],[164,166,169,177,197],[165,197],[166,167,197],[168,169,197],[169,197],[169,170,171,186,196,197],[169,170,171,186,197],[172,177,186,196,197],[169,170,172,173,177,186,193,196,197],[172,174,186,193,196,197],[154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203],[169,175,197],[176,196,197],[166,169,177,186,197],[178,197],[179,197],[157,180,197],[181,195,197,201],[182,197],[183,197],[169,184,197],[184,185,197,199],[169,186,187,188,197],[186,188,197],[186,187,197],[189,197],[190,197],[169,191,192,197],[191,192,197],[163,177,193,197],[194,197],[177,195,197],[158,172,183,196,197],[163,197],[186,197,198],[197,199],[197,200],[158,163,169,171,180,186,196,197,199,201],[186,197,202],[49,197,275],[45,46,47,48,197],[197,278,317],[197,278,302,317],[197,317],[197,278],[197,278,303,317],[197,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316],[197,303,317],[197,209,319,320],[197,318],[197,326,327],[197,225,326],[197,225,327],[197,330],[197,204,230,332],[197,204,336,337,338,339,340,341,342,343,344,345,346],[197,335,336,345],[197,336,345],[197,323,335,336,345],[197,336],[163,197,335,345],[197,335,336,337,338,339,340,341,342,343,344,346],[163,197,204,325,330,331,334,347],[197,351],[87,88,197],[49,59,123,197],[59,197],[49,123,197],[122,123,124,125,126,134,197],[47,127,197],[127,128,129,130,132,133,197],[131,197],[52,197],[54,197],[52,53,197],[47,49,197],[52,53,54,55,56,57,58,197],[49,56,58,112,197],[49,59,197],[49,56,58,114,197],[49,56,58,135,136,197],[49,59,135,197],[112,113,114,115,136,137,197],[44,84,86,89,90,91,93,197],[89,90,94,197],[44,59,84,89,90,92,197],[89,90,197],[49,111,138,197],[90,91,92,93,94,95,139,197],[59,84,197],[50,51,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,197],[96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,197],[85,197]],"referencedMap":[[145,1],[144,2],[117,3],[118,4],[116,2],[120,5],[122,6],[119,7],[121,8],[318,2],[152,9],[151,10],[150,2],[143,11],[142,2],[147,12],[146,2],[149,11],[148,2],[153,2],[208,13],[210,14],[211,14],[209,2],[212,2],[214,15],[216,16],[215,17],[213,2],[217,2],[218,2],[219,18],[220,19],[221,20],[223,21],[224,2],[225,2],[226,2],[229,2],[228,22],[222,23],[231,24],[232,5],[233,2],[206,2],[234,25],[235,2],[236,2],[237,26],[238,27],[239,2],[240,2],[241,2],[244,28],[243,2],[242,2],[205,29],[246,30],[247,31],[245,32],[248,33],[249,34],[250,35],[251,36],[252,37],[253,38],[254,39],[255,40],[256,41],[257,42],[258,5],[259,24],[260,43],[227,2],[261,2],[262,2],[264,2],[265,44],[263,45],[154,46],[155,46],[157,47],[158,48],[159,49],[160,50],[161,51],[162,52],[163,53],[164,54],[165,55],[166,56],[167,56],[168,57],[169,58],[170,59],[171,60],[156,2],[203,2],[172,61],[173,62],[174,63],[204,64],[175,65],[176,66],[177,67],[178,68],[179,69],[180,70],[181,71],[182,72],[183,73],[184,74],[185,75],[186,76],[188,77],[187,78],[189,79],[190,80],[191,81],[192,82],[193,83],[194,84],[195,85],[196,86],[197,87],[198,88],[199,89],[200,90],[201,91],[202,92],[266,2],[267,58],[268,2],[269,2],[270,2],[271,2],[47,2],[272,2],[273,5],[274,5],[275,93],[45,2],[49,94],[276,19],[207,45],[277,2],[48,2],[302,95],[303,96],[278,97],[281,97],[300,95],[301,95],[291,98],[290,98],[288,95],[283,95],[296,95],[294,95],[298,95],[282,95],[295,95],[299,95],[284,95],[285,95],[297,95],[279,95],[286,95],[287,95],[289,95],[293,95],[304,99],[292,95],[280,95],[317,100],[316,2],[311,99],[313,101],[312,99],[305,99],[306,99],[308,99],[310,99],[314,101],[315,101],[307,101],[309,101],[321,102],[320,103],[319,103],[322,2],[323,2],[324,2],[325,2],[328,104],[327,105],[326,106],[329,2],[331,107],[230,2],[333,108],[349,2],[347,109],[346,110],[337,111],[338,112],[339,112],[340,111],[341,111],[342,111],[343,113],[336,114],[344,110],[345,115],[335,2],[348,116],[334,2],[350,2],[351,2],[352,117],[46,2],[44,2],[330,2],[9,2],[10,2],[14,2],[13,2],[3,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[4,2],[5,2],[26,2],[23,2],[24,2],[25,2],[27,2],[28,2],[29,2],[6,2],[30,2],[31,2],[32,2],[33,2],[7,2],[34,2],[35,2],[36,2],[37,2],[8,2],[42,2],[38,2],[39,2],[40,2],[41,2],[2,2],[1,2],[43,2],[12,2],[11,2],[332,24],[87,2],[89,118],[88,2],[124,119],[123,120],[125,121],[135,122],[128,123],[127,120],[130,2],[134,124],[129,120],[131,2],[132,125],[133,125],[126,119],[53,126],[52,2],[56,5],[57,5],[55,127],[54,128],[58,129],[59,130],[113,131],[112,132],[115,133],[114,132],[137,134],[136,135],[138,136],[94,137],[95,138],[90,132],[93,139],[91,140],[139,141],[140,142],[92,143],[141,2],[50,5],[51,2],[60,120],[61,120],[62,2],[63,120],[64,120],[65,120],[66,120],[67,120],[68,120],[69,2],[70,120],[71,120],[72,120],[73,5],[74,120],[75,120],[76,5],[84,144],[77,120],[78,120],[83,120],[79,120],[80,120],[81,2],[82,2],[97,129],[96,5],[98,2],[99,5],[100,5],[102,5],[103,132],[104,2],[101,5],[111,145],[105,5],[106,2],[107,2],[108,2],[109,5],[110,5],[86,146],[85,2]],"exportedModulesMap":[[145,1],[144,2],[117,3],[118,4],[116,2],[120,5],[122,6],[119,7],[121,8],[318,2],[152,9],[151,10],[150,2],[143,11],[142,2],[147,12],[146,2],[149,11],[148,2],[153,2],[208,13],[210,14],[211,14],[209,2],[212,2],[214,15],[216,16],[215,17],[213,2],[217,2],[218,2],[219,18],[220,19],[221,20],[223,21],[224,2],[225,2],[226,2],[229,2],[228,22],[222,23],[231,24],[232,5],[233,2],[206,2],[234,25],[235,2],[236,2],[237,26],[238,27],[239,2],[240,2],[241,2],[244,28],[243,2],[242,2],[205,29],[246,30],[247,31],[245,32],[248,33],[249,34],[250,35],[251,36],[252,37],[253,38],[254,39],[255,40],[256,41],[257,42],[258,5],[259,24],[260,43],[227,2],[261,2],[262,2],[264,2],[265,44],[263,45],[154,46],[155,46],[157,47],[158,48],[159,49],[160,50],[161,51],[162,52],[163,53],[164,54],[165,55],[166,56],[167,56],[168,57],[169,58],[170,59],[171,60],[156,2],[203,2],[172,61],[173,62],[174,63],[204,64],[175,65],[176,66],[177,67],[178,68],[179,69],[180,70],[181,71],[182,72],[183,73],[184,74],[185,75],[186,76],[188,77],[187,78],[189,79],[190,80],[191,81],[192,82],[193,83],[194,84],[195,85],[196,86],[197,87],[198,88],[199,89],[200,90],[201,91],[202,92],[266,2],[267,58],[268,2],[269,2],[270,2],[271,2],[47,2],[272,2],[273,5],[274,5],[275,93],[45,2],[49,94],[276,19],[207,45],[277,2],[48,2],[302,95],[303,96],[278,97],[281,97],[300,95],[301,95],[291,98],[290,98],[288,95],[283,95],[296,95],[294,95],[298,95],[282,95],[295,95],[299,95],[284,95],[285,95],[297,95],[279,95],[286,95],[287,95],[289,95],[293,95],[304,99],[292,95],[280,95],[317,100],[316,2],[311,99],[313,101],[312,99],[305,99],[306,99],[308,99],[310,99],[314,101],[315,101],[307,101],[309,101],[321,102],[320,103],[319,103],[322,2],[323,2],[324,2],[325,2],[328,104],[327,105],[326,106],[329,2],[331,107],[230,2],[333,108],[349,2],[347,109],[346,110],[337,111],[338,112],[339,112],[340,111],[341,111],[342,111],[343,113],[336,114],[344,110],[345,115],[335,2],[348,116],[334,2],[350,2],[351,2],[352,117],[46,2],[44,2],[330,2],[9,2],[10,2],[14,2],[13,2],[3,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[4,2],[5,2],[26,2],[23,2],[24,2],[25,2],[27,2],[28,2],[29,2],[6,2],[30,2],[31,2],[32,2],[33,2],[7,2],[34,2],[35,2],[36,2],[37,2],[8,2],[42,2],[38,2],[39,2],[40,2],[41,2],[2,2],[1,2],[43,2],[12,2],[11,2],[332,24],[87,2],[89,118],[88,2],[124,119],[123,120],[125,121],[135,122],[128,123],[127,120],[130,2],[134,124],[129,120],[131,2],[132,125],[133,125],[126,119],[53,126],[52,2],[56,5],[57,5],[55,127],[54,128],[58,129],[59,130],[113,131],[112,132],[115,133],[114,132],[137,134],[136,135],[138,136],[94,137],[95,138],[90,132],[93,139],[91,140],[139,141],[140,142],[92,143],[141,2],[50,5],[51,2],[60,120],[61,120],[62,2],[63,120],[64,120],[65,120],[66,120],[67,120],[68,120],[69,2],[70,120],[71,120],[72,120],[73,5],[74,120],[75,120],[76,5],[84,144],[77,120],[78,120],[83,120],[79,120],[80,120],[81,2],[82,2],[97,129],[96,5],[98,2],[99,5],[100,5],[102,5],[103,132],[104,2],[101,5],[111,145],[105,5],[106,2],[107,2],[108,2],[109,5],[110,5],[86,146],[85,2]],"semanticDiagnosticsPerFile":[145,144,117,118,116,120,122,119,121,318,152,151,150,143,142,147,146,149,148,153,208,210,211,209,212,214,216,215,213,217,218,219,220,221,223,224,225,226,229,228,222,231,232,233,206,234,235,236,237,238,239,240,241,244,243,242,205,246,247,245,248,249,250,251,252,253,254,255,256,257,258,259,260,227,261,262,264,265,263,154,155,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,156,203,172,173,174,204,175,176,177,178,179,180,181,182,183,184,185,186,188,187,189,190,191,192,193,194,195,196,197,198,199,200,201,202,266,267,268,269,270,271,47,272,273,274,275,45,49,276,207,277,48,302,303,278,281,300,301,291,290,288,283,296,294,298,282,295,299,284,285,297,279,286,287,289,293,304,292,280,317,316,311,313,312,305,306,308,310,314,315,307,309,321,320,319,322,323,324,325,328,327,326,329,331,230,333,349,347,346,337,338,339,340,341,342,343,336,344,345,335,348,334,350,351,352,46,44,330,9,10,14,13,3,15,16,17,18,19,20,21,22,4,5,26,23,24,25,27,28,29,6,30,31,32,33,7,34,35,36,37,8,42,38,39,40,41,2,1,43,12,11,332,87,89,88,124,123,125,135,128,127,130,134,129,131,132,133,126,53,52,56,57,55,54,58,59,113,112,115,114,137,136,138,94,95,90,93,91,139,140,92,141,50,51,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,84,77,78,83,79,80,81,82,97,96,98,99,100,102,103,104,101,111,105,106,107,108,109,110,86,85]},"version":"4.4.3"}
|
package/types/FocusRegion.d.ts
CHANGED
|
@@ -10,11 +10,11 @@ declare class FocusRegion {
|
|
|
10
10
|
private _active;
|
|
11
11
|
constructor(element: Element | Node | null, options: FocusRegionOptions);
|
|
12
12
|
updateElement(element: Element | Node): void;
|
|
13
|
-
handleDismiss: (event:
|
|
14
|
-
captureDocumentClick: (event: MouseEvent) => void;
|
|
15
|
-
handleDocumentClick: (event: MouseEvent) => void;
|
|
16
|
-
handleFrameClick: (event: MouseEvent, frame: HTMLIFrameElement) => void;
|
|
17
|
-
handleKeyUp: (event: KeyboardEvent) => void;
|
|
13
|
+
handleDismiss: (event: React.MouseEvent | React.KeyboardEvent, documentClick?: boolean | undefined) => void;
|
|
14
|
+
captureDocumentClick: (event: React.MouseEvent) => void;
|
|
15
|
+
handleDocumentClick: (event: React.MouseEvent) => void;
|
|
16
|
+
handleFrameClick: (event: React.MouseEvent, frame: HTMLIFrameElement) => void;
|
|
17
|
+
handleKeyUp: (event: React.KeyboardEvent) => void;
|
|
18
18
|
get id(): string;
|
|
19
19
|
get focused(): boolean;
|
|
20
20
|
get keyboardFocusable(): boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FocusRegion.d.ts","sourceRoot":"","sources":["../src/FocusRegion.ts"],"names":[],"mappings":"AAqCA,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAA;AAEzD,cAAM,WAAW;IACf,OAAO,CAAC,eAAe,CAA8B;IACrD,OAAO,CAAC,4BAA4B,CAAQ;IAC5C,OAAO,CAAC,QAAQ,CAAoB;IACpC,OAAO,CAAC,QAAQ,CAAC,wBAAwB,CAAyB;IAClE,OAAO,CAAC,QAAQ,CAAC,oBAAoB,CAAqB;IAC1D,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAQ;IAC5B,OAAO,CAAC,UAAU,CAA4C;IAC9D,OAAO,CAAC,OAAO,CAAQ;gBAEX,OAAO,EAAE,OAAO,GAAG,IAAI,GAAG,IAAI,EAAE,OAAO,EAAE,kBAAkB;IAcvE,aAAa,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI;IAUrC,aAAa,
|
|
1
|
+
{"version":3,"file":"FocusRegion.d.ts","sourceRoot":"","sources":["../src/FocusRegion.ts"],"names":[],"mappings":"AAqCA,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAA;AAEzD,cAAM,WAAW;IACf,OAAO,CAAC,eAAe,CAA8B;IACrD,OAAO,CAAC,4BAA4B,CAAQ;IAC5C,OAAO,CAAC,QAAQ,CAAoB;IACpC,OAAO,CAAC,QAAQ,CAAC,wBAAwB,CAAyB;IAClE,OAAO,CAAC,QAAQ,CAAC,oBAAoB,CAAqB;IAC1D,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAQ;IAC5B,OAAO,CAAC,UAAU,CAA4C;IAC9D,OAAO,CAAC,OAAO,CAAQ;gBAEX,OAAO,EAAE,OAAO,GAAG,IAAI,GAAG,IAAI,EAAE,OAAO,EAAE,kBAAkB;IAcvE,aAAa,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI;IAUrC,aAAa,UACJ,gBAAgB,GAAG,mBAAmB,+CAI9C;IAED,oBAAoB,UAAW,gBAAgB,UAI9C;IAED,mBAAmB,UAAW,gBAAgB,UAO7C;IAED,gBAAgB,UAAW,gBAAgB,SAAS,iBAAiB,UAKpE;IAED,WAAW,UAAW,mBAAmB,UAQxC;IAED,IAAI,EAAE,WAEL;IAID,IAAI,OAAO,YAEV;IAED,IAAI,iBAAiB,YAEpB;IAED,QAAQ;IAoCR,UAAU,CAAC,EAAE,QAAe,EAAE,GAAE;QAAE,QAAQ,CAAC,EAAE,OAAO,CAAA;KAAO;IAc3D,KAAK;IAQL,IAAI;CAOL;AAED,eAAe,WAAW,CAAA;AAC1B,OAAO;AACL;;;;;;;;;;;GAWG;AACH,WAAW,EACZ,CAAA"}
|
|
@@ -15,7 +15,7 @@ declare class FocusRegionManager {
|
|
|
15
15
|
static getEntry: (element: Element | Node, id?: string | undefined) => Entry;
|
|
16
16
|
static addEntry: (element: Element | Node, options?: FocusRegionOptions) => {
|
|
17
17
|
id: string;
|
|
18
|
-
element:
|
|
18
|
+
element: Element | Node;
|
|
19
19
|
region: FocusRegion;
|
|
20
20
|
children: never[];
|
|
21
21
|
parent: Entry | undefined;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import type { LiveRegion, UIElement } from '@instructure/shared-types';
|
|
2
3
|
export declare type FocusRegionOptions = {
|
|
3
4
|
/**
|
|
4
5
|
* Function called when tab focus leaves the focusable content. This only
|
|
5
6
|
* occurs when `shouldContainFocus` is set to false.
|
|
6
7
|
*/
|
|
7
|
-
onBlur?: (event:
|
|
8
|
+
onBlur?: (event: React.UIEvent | React.FocusEvent) => void;
|
|
8
9
|
/**
|
|
9
10
|
* Function called when a focus region is dismissed. This can happen when
|
|
10
11
|
* the user presses the escape key and `shouldCloseOnEscape` is true or
|
|
@@ -13,7 +14,7 @@ export declare type FocusRegionOptions = {
|
|
|
13
14
|
* @param event The event triggered the dismissal
|
|
14
15
|
* @param documentClick Whether the dismissal was triggered by a mouse click.
|
|
15
16
|
*/
|
|
16
|
-
onDismiss?: (event:
|
|
17
|
+
onDismiss?: (event: React.UIEvent | React.FocusEvent, documentClick?: boolean) => void;
|
|
17
18
|
/**
|
|
18
19
|
* An element or a function returning an element to focus by default
|
|
19
20
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FocusRegionOptions.d.ts","sourceRoot":"","sources":["../src/FocusRegionOptions.ts"],"names":[],"mappings":"AAwBA,OAAO,KAAK,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,2BAA2B,CAAA;AAEtE,oBAAY,kBAAkB,GAAG;IAC/B;;;OAGG;IACH,MAAM,CAAC,EAAE,CAAC,KAAK,EAAE,KAAK,KAAK,IAAI,CAAA;
|
|
1
|
+
{"version":3,"file":"FocusRegionOptions.d.ts","sourceRoot":"","sources":["../src/FocusRegionOptions.ts"],"names":[],"mappings":"AAwBA,OAAO,KAAK,MAAM,OAAO,CAAA;AAEzB,OAAO,KAAK,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,2BAA2B,CAAA;AAEtE,oBAAY,kBAAkB,GAAG;IAC/B;;;OAGG;IACH,MAAM,CAAC,EAAE,CAAC,KAAK,EAAE,KAAK,CAAC,OAAO,GAAG,KAAK,CAAC,UAAU,KAAK,IAAI,CAAA;IAC1D;;;;;;;OAOG;IACH,SAAS,CAAC,EAAE,CACV,KAAK,EAAE,KAAK,CAAC,OAAO,GAAG,KAAK,CAAC,UAAU,EACvC,aAAa,CAAC,EAAE,OAAO,KACpB,IAAI,CAAA;IACT;;OAEG;IACH,mBAAmB,CAAC,EAAE,SAAS,CAAA;IAC/B;;;OAGG;IACH,UAAU,CAAC,EAAE,UAAU,CAAA;IACvB;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,OAAO,GAAG,CAAC,UAAU,GAAG,cAAc,CAAC,EAAE,CAAA;IAC9D;;;OAGG;IACH,iBAAiB,CAAC,EAAE,OAAO,CAAA;IAC3B;;;OAGG;IACH,0BAA0B,CAAC,EAAE,OAAO,CAAA;IACpC;;;OAGG;IACH,mBAAmB,CAAC,EAAE,OAAO,CAAA;IAC7B;;OAEG;IACH,iBAAiB,CAAC,EAAE,OAAO,CAAA;IAC3B;;OAEG;IACH,UAAU,CAAC,EAAE,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI,KAAK,IAAI,CAAA;CAC/C,CAAA"}
|
|
@@ -25,12 +25,12 @@ declare class KeyboardFocusRegion {
|
|
|
25
25
|
focusDefaultElement(): void;
|
|
26
26
|
focus(): void;
|
|
27
27
|
blur(): void;
|
|
28
|
-
handleKeyDown: (event: KeyboardEvent) => void;
|
|
28
|
+
handleKeyDown: (event: React.KeyboardEvent) => void;
|
|
29
29
|
handleClick: () => void;
|
|
30
30
|
handleWindowBlur: () => void;
|
|
31
31
|
handleFocus: () => void;
|
|
32
|
-
handleFirstTabbableKeyDown: (event: KeyboardEvent) => void;
|
|
33
|
-
handleLastTabbableKeyDown: (event: KeyboardEvent) => void;
|
|
32
|
+
handleFirstTabbableKeyDown: (event: React.KeyboardEvent) => void;
|
|
33
|
+
handleLastTabbableKeyDown: (event: React.KeyboardEvent) => void;
|
|
34
34
|
activate(): void;
|
|
35
35
|
deactivate(): void;
|
|
36
36
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"KeyboardFocusRegion.d.ts","sourceRoot":"","sources":["../src/KeyboardFocusRegion.ts"],"names":[],"mappings":"AA2CA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,2BAA2B,CAAA;AAC1D,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAA;AAEzD,cAAM,mBAAmB;IACvB,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAoB;IAC7C,OAAO,CAAC,kBAAkB,CAAuB;IACjD,OAAO,CAAC,YAAY,CAAQ;IAC5B,OAAO,CAAC,UAAU,CAA4C;IAC9D,OAAO,CAAC,IAAI,CAAkC;IAC9C,OAAO,CAAC,OAAO,CAAQ;IACvB,OAAO,CAAC,iBAAiB,CAAC,CAAS;IAC5B,eAAe,CAAC,EAAE,IAAI,CAAA;gBAEjB,OAAO,EAAE,SAAS,EAAE,OAAO,EAAE,kBAAkB;IAY3D,IAAI,OAAO,YAEV;IAED,IAAI,kBAAkB,YAOrB;IAED,IAAI,SAAS,IAAI,OAAO,EAAE,CAEzB;IAED,IAAI,QAAQ,IAAI,OAAO,EAAE,CAExB;IAED,IAAI,aAAa,IAAI,OAAO,GAAG,SAAS,CAEvC;IAED,IAAI,YAAY,IAAI,OAAO,GAAG,SAAS,CAEtC;IAED,IAAI,cAAc,IAAI,OAAO,GAAG,SAAS,CAExC;IAED,IAAI,aAAa,IAAI,OAAO,GAAG,SAAS,CAEvC;IAED,IAAI,GAAG,aAEN;IAED,IAAI,GAAG,wCAEN;IAED,IAAI,mBAAmB,gBAwBtB;IAED,aAAa,CAAC,OAAO,EAAE,SAAS;IAIhC,mBAAmB;IAmBnB,KAAK;IAYL,IAAI;IAiBJ,aAAa,UAAW,
|
|
1
|
+
{"version":3,"file":"KeyboardFocusRegion.d.ts","sourceRoot":"","sources":["../src/KeyboardFocusRegion.ts"],"names":[],"mappings":"AA2CA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,2BAA2B,CAAA;AAC1D,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAA;AAEzD,cAAM,mBAAmB;IACvB,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAoB;IAC7C,OAAO,CAAC,kBAAkB,CAAuB;IACjD,OAAO,CAAC,YAAY,CAAQ;IAC5B,OAAO,CAAC,UAAU,CAA4C;IAC9D,OAAO,CAAC,IAAI,CAAkC;IAC9C,OAAO,CAAC,OAAO,CAAQ;IACvB,OAAO,CAAC,iBAAiB,CAAC,CAAS;IAC5B,eAAe,CAAC,EAAE,IAAI,CAAA;gBAEjB,OAAO,EAAE,SAAS,EAAE,OAAO,EAAE,kBAAkB;IAY3D,IAAI,OAAO,YAEV;IAED,IAAI,kBAAkB,YAOrB;IAED,IAAI,SAAS,IAAI,OAAO,EAAE,CAEzB;IAED,IAAI,QAAQ,IAAI,OAAO,EAAE,CAExB;IAED,IAAI,aAAa,IAAI,OAAO,GAAG,SAAS,CAEvC;IAED,IAAI,YAAY,IAAI,OAAO,GAAG,SAAS,CAEtC;IAED,IAAI,cAAc,IAAI,OAAO,GAAG,SAAS,CAExC;IAED,IAAI,aAAa,IAAI,OAAO,GAAG,SAAS,CAEvC;IAED,IAAI,GAAG,aAEN;IAED,IAAI,GAAG,wCAEN;IAED,IAAI,mBAAmB,gBAwBtB;IAED,aAAa,CAAC,OAAO,EAAE,SAAS;IAIhC,mBAAmB;IAmBnB,KAAK;IAYL,IAAI;IAiBJ,aAAa,UAAW,mBAAmB,UAI1C;IAED,WAAW,aAEV;IAED,gBAAgB,aAMf;IAED,WAAW,aAqBV;IAED,0BAA0B,UAAW,mBAAmB,UAIvD;IAED,yBAAyB,UAAW,mBAAmB,UAItD;IAED,QAAQ;IAyCR,UAAU;CAWX;AAED,eAAe,mBAAmB,CAAA;AAClC,OAAO;AACL;;;;;;;;;;GAUG;AACH,mBAAmB,EACpB,CAAA"}
|
package/types/scopeTab.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
1
2
|
import type { UIElement } from '@instructure/shared-types';
|
|
2
|
-
declare function scopeTab(element: UIElement | undefined, event: KeyboardEvent, onLeavingFinalTabbable?: () => void): void;
|
|
3
|
+
declare function scopeTab(element: UIElement | undefined, event: React.KeyboardEvent, onLeavingFinalTabbable?: () => void): void;
|
|
3
4
|
export default scopeTab;
|
|
4
5
|
export {
|
|
5
6
|
/**
|
package/types/scopeTab.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"scopeTab.d.ts","sourceRoot":"","sources":["../src/scopeTab.ts"],"names":[],"mappings":"AA+BA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,2BAA2B,CAAA;AAE1D,iBAAS,QAAQ,CACf,OAAO,EAAE,SAAS,GAAG,SAAS,EAC9B,KAAK,EAAE,aAAa,
|
|
1
|
+
{"version":3,"file":"scopeTab.d.ts","sourceRoot":"","sources":["../src/scopeTab.ts"],"names":[],"mappings":";AA+BA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,2BAA2B,CAAA;AAE1D,iBAAS,QAAQ,CACf,OAAO,EAAE,SAAS,GAAG,SAAS,EAC9B,KAAK,EAAE,KAAK,CAAC,aAAa,EAC1B,sBAAsB,CAAC,EAAE,MAAM,IAAI,QAqCpC;AAED,eAAe,QAAQ,CAAA;AACvB,OAAO;AACL;;;;;;;;;;;GAWG;AACH,QAAQ,EACT,CAAA"}
|
package/types/types.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
declare type FocusRegionElement = Node | Window;
|
|
2
|
+
declare type FocusRegionOptions = {
|
|
3
|
+
shouldContainFocus: boolean;
|
|
4
|
+
liveRegion: FocusRegionElement | FocusRegionElement[] | (() => FocusRegionElement) | (() => FocusRegionElement[]);
|
|
5
|
+
};
|
|
6
|
+
export type { FocusRegionElement, FocusRegionOptions };
|
|
7
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAwBA,aAAK,kBAAkB,GAAG,IAAI,GAAG,MAAM,CAAA;AAEvC,aAAK,kBAAkB,GAAG;IACxB,kBAAkB,EAAE,OAAO,CAAA;IAC3B,UAAU,EACN,kBAAkB,GAClB,kBAAkB,EAAE,GACpB,CAAC,MAAM,kBAAkB,CAAC,GAC1B,CAAC,MAAM,kBAAkB,EAAE,CAAC,CAAA;CACjC,CAAA;AAED,YAAY,EAAE,kBAAkB,EAAE,kBAAkB,EAAE,CAAA"}
|
package/LICENSE.md
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
title: The MIT License (MIT)
|
|
3
|
-
category: Getting Started
|
|
4
|
-
order: 9
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
# The MIT License (MIT)
|
|
8
|
-
|
|
9
|
-
Copyright (c) 2015 Instructure, Inc.
|
|
10
|
-
|
|
11
|
-
**Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
12
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
13
|
-
in the Software without restriction, including without limitation the rights
|
|
14
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
15
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
16
|
-
furnished to do so, subject to the following conditions.**
|
|
17
|
-
|
|
18
|
-
The above copyright notice and this permission notice shall be included in all
|
|
19
|
-
copies or substantial portions of the Software.
|
|
20
|
-
|
|
21
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
22
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
23
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
24
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
25
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
26
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
27
|
-
SOFTWARE.
|