@instructure/ui-tray 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 +4 -0
- package/es/Tray/index.js +1 -1
- package/lib/Tray/index.js +1 -1
- package/package.json +18 -19
- package/src/Tray/index.tsx +2 -1
- package/src/Tray/props.ts +5 -4
- package/tsconfig.build.json +22 -2
- package/tsconfig.build.tsbuildinfo +1 -0
- package/types/Tray/TrayLocator.d.ts +52 -52
- package/types/Tray/index.d.ts +10 -9
- package/types/Tray/index.d.ts.map +1 -1
- package/types/Tray/props.d.ts +5 -4
- package/types/Tray/props.d.ts.map +1 -1
- package/LICENSE.md +0 -27
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
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
|
+
**Note:** Version bump only for package @instructure/ui-tray
|
|
9
|
+
|
|
6
10
|
# [8.13.0](https://github.com/instructure/instructure-ui/compare/v8.12.0...v8.13.0) (2021-12-01)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package @instructure/ui-tray
|
package/es/Tray/index.js
CHANGED
package/lib/Tray/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-tray",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.14.0",
|
|
4
4
|
"description": "Tray component for secondary/menu content",
|
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
6
6
|
"type": "commonjs",
|
|
@@ -25,25 +25,25 @@
|
|
|
25
25
|
"license": "MIT",
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@babel/runtime": "^7.13.10",
|
|
28
|
-
"@instructure/console": "8.
|
|
29
|
-
"@instructure/emotion": "8.
|
|
30
|
-
"@instructure/shared-types": "8.
|
|
31
|
-
"@instructure/ui-dialog": "8.
|
|
32
|
-
"@instructure/ui-i18n": "8.
|
|
33
|
-
"@instructure/ui-motion": "8.
|
|
34
|
-
"@instructure/ui-portal": "8.
|
|
35
|
-
"@instructure/ui-position": "8.
|
|
36
|
-
"@instructure/ui-prop-types": "8.
|
|
37
|
-
"@instructure/ui-react-utils": "8.
|
|
38
|
-
"@instructure/ui-testable": "8.
|
|
39
|
-
"@instructure/ui-utils": "8.
|
|
28
|
+
"@instructure/console": "8.14.0",
|
|
29
|
+
"@instructure/emotion": "8.14.0",
|
|
30
|
+
"@instructure/shared-types": "8.14.0",
|
|
31
|
+
"@instructure/ui-dialog": "8.14.0",
|
|
32
|
+
"@instructure/ui-i18n": "8.14.0",
|
|
33
|
+
"@instructure/ui-motion": "8.14.0",
|
|
34
|
+
"@instructure/ui-portal": "8.14.0",
|
|
35
|
+
"@instructure/ui-position": "8.14.0",
|
|
36
|
+
"@instructure/ui-prop-types": "8.14.0",
|
|
37
|
+
"@instructure/ui-react-utils": "8.14.0",
|
|
38
|
+
"@instructure/ui-testable": "8.14.0",
|
|
39
|
+
"@instructure/ui-utils": "8.14.0",
|
|
40
40
|
"prop-types": "^15"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@instructure/ui-babel-preset": "8.
|
|
44
|
-
"@instructure/ui-test-locator": "8.
|
|
45
|
-
"@instructure/ui-test-utils": "8.
|
|
46
|
-
"@instructure/ui-themes": "8.
|
|
43
|
+
"@instructure/ui-babel-preset": "8.14.0",
|
|
44
|
+
"@instructure/ui-test-locator": "8.14.0",
|
|
45
|
+
"@instructure/ui-test-utils": "8.14.0",
|
|
46
|
+
"@instructure/ui-themes": "8.14.0"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
49
|
"react": ">=16.8 <=17"
|
|
@@ -51,6 +51,5 @@
|
|
|
51
51
|
"publishConfig": {
|
|
52
52
|
"access": "public"
|
|
53
53
|
},
|
|
54
|
-
"sideEffects": false
|
|
55
|
-
"gitHead": "f32ba918e4d3ce76c6ee95c856584d00a9d80958"
|
|
54
|
+
"sideEffects": false
|
|
56
55
|
}
|
package/src/Tray/index.tsx
CHANGED
|
@@ -34,6 +34,7 @@ import { Portal } from '@instructure/ui-portal'
|
|
|
34
34
|
import type { PortalNode } from '@instructure/ui-portal'
|
|
35
35
|
import { mirrorHorizontalPlacement } from '@instructure/ui-position'
|
|
36
36
|
import { Transition } from '@instructure/ui-motion'
|
|
37
|
+
import type { TransitionType } from '@instructure/ui-motion'
|
|
37
38
|
import { withStyle, jsx } from '@instructure/emotion'
|
|
38
39
|
import generateStyle from './styles'
|
|
39
40
|
import generateComponentTheme from './theme'
|
|
@@ -131,7 +132,7 @@ class Tray extends Component<TrayProps> {
|
|
|
131
132
|
return this.props.defaultFocusElement || (() => this._closeButton)
|
|
132
133
|
}
|
|
133
134
|
|
|
134
|
-
handleTransitionComplete = () => {
|
|
135
|
+
handleTransitionComplete = (_type?: TransitionType) => {
|
|
135
136
|
this.setState({ transitioning: false })
|
|
136
137
|
}
|
|
137
138
|
|
package/src/Tray/props.ts
CHANGED
|
@@ -35,6 +35,7 @@ import type {
|
|
|
35
35
|
LiveRegion
|
|
36
36
|
} from '@instructure/shared-types'
|
|
37
37
|
import type { BidirectionalProps } from '@instructure/ui-i18n'
|
|
38
|
+
import type { TransitionType } from '@instructure/ui-motion'
|
|
38
39
|
|
|
39
40
|
type TrayOwnProps = {
|
|
40
41
|
label: string
|
|
@@ -46,8 +47,8 @@ type TrayOwnProps = {
|
|
|
46
47
|
shouldContainFocus?: boolean
|
|
47
48
|
shouldReturnFocus?: boolean
|
|
48
49
|
shouldCloseOnDocumentClick?: boolean
|
|
49
|
-
onOpen?: (
|
|
50
|
-
onClose?: (
|
|
50
|
+
onOpen?: (type?: TransitionType) => void
|
|
51
|
+
onClose?: (type?: TransitionType) => void
|
|
51
52
|
onDismiss?: (...args: any[]) => any
|
|
52
53
|
mountNode?: any // TODO: PropTypes.oneOfType([element, PropTypes.func])
|
|
53
54
|
insertAt?: 'bottom' | 'top'
|
|
@@ -55,10 +56,10 @@ type TrayOwnProps = {
|
|
|
55
56
|
onTransition?: (...args: any[]) => any
|
|
56
57
|
onEnter?: (...args: any[]) => any
|
|
57
58
|
onEntering?: (...args: any[]) => any
|
|
58
|
-
onEntered?: (
|
|
59
|
+
onEntered?: (type?: TransitionType) => void
|
|
59
60
|
onExit?: (...args: any[]) => any
|
|
60
61
|
onExiting?: (...args: any[]) => any
|
|
61
|
-
onExited?: (
|
|
62
|
+
onExited?: (type?: TransitionType) => void
|
|
62
63
|
border?: boolean
|
|
63
64
|
shadow?: boolean
|
|
64
65
|
children?: React.ReactNode
|
package/tsconfig.build.json
CHANGED
|
@@ -1,7 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"extends": "../../tsconfig.build.json",
|
|
3
3
|
"compilerOptions": {
|
|
4
|
-
"outDir": "./types"
|
|
4
|
+
"outDir": "./types",
|
|
5
|
+
"rootDir": "./src",
|
|
6
|
+
"composite": true
|
|
5
7
|
},
|
|
6
|
-
"include": ["src
|
|
8
|
+
"include": ["src"],
|
|
9
|
+
"references": [
|
|
10
|
+
{ "path": "../console/tsconfig.build.json" },
|
|
11
|
+
{ "path": "../emotion/tsconfig.build.json" },
|
|
12
|
+
{ "path": "../shared-types/tsconfig.build.json" },
|
|
13
|
+
{ "path": "../ui-dialog/tsconfig.build.json" },
|
|
14
|
+
{ "path": "../ui-i18n/tsconfig.build.json" },
|
|
15
|
+
{ "path": "../ui-motion/tsconfig.build.json" },
|
|
16
|
+
{ "path": "../ui-portal/tsconfig.build.json" },
|
|
17
|
+
{ "path": "../ui-position/tsconfig.build.json" },
|
|
18
|
+
{ "path": "../ui-prop-types/tsconfig.build.json" },
|
|
19
|
+
{ "path": "../ui-react-utils/tsconfig.build.json" },
|
|
20
|
+
{ "path": "../ui-testable/tsconfig.build.json" },
|
|
21
|
+
{ "path": "../ui-utils/tsconfig.build.json" },
|
|
22
|
+
{ "path": "../ui-babel-preset/tsconfig.build.json" },
|
|
23
|
+
{ "path": "../ui-test-locator/tsconfig.build.json" },
|
|
24
|
+
{ "path": "../ui-test-utils/tsconfig.build.json" },
|
|
25
|
+
{ "path": "../ui-themes/tsconfig.build.json" }
|
|
26
|
+
]
|
|
7
27
|
}
|
|
@@ -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/@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","../ui-a11y-utils/types/FocusRegionOptions.d.ts","../ui-a11y-utils/types/FocusRegion.d.ts","../ui-a11y-utils/types/FocusRegionManager.d.ts","../ui-a11y-utils/types/hasVisibleChildren.d.ts","../ui-a11y-utils/types/KeyboardFocusRegion.d.ts","../ui-a11y-utils/types/scopeTab.d.ts","../ui-a11y-utils/types/ScreenReaderFocusRegion.d.ts","../ui-a11y-utils/types/index.d.ts","../ui-dialog/types/Dialog/props.d.ts","../ui-dialog/types/Dialog/index.d.ts","../ui-dialog/types/index.d.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","../../node_modules/bowser/typings.d.ts","../ui-utils/types/Browser.d.ts","../ui-utils/types/isEdge.d.ts","../ui-utils/types/isIE11.d.ts","../ui-utils/types/capitalizeFirstLetter.d.ts","../ui-utils/types/cloneArray.d.ts","../ui-utils/types/createChainedFunction.d.ts","../ui-utils/node_modules/fast-deep-equal/index.d.ts","../ui-utils/types/deepEqual.d.ts","../ui-utils/types/hash.d.ts","../ui-utils/types/isEmpty.d.ts","../ui-utils/types/mergeDeep.d.ts","../ui-utils/types/ms.d.ts","../ui-utils/types/parseUnit.d.ts","../ui-utils/types/px.d.ts","../ui-utils/types/shallowEqual.d.ts","../ui-utils/types/within.d.ts","../ui-utils/types/camelize.d.ts","../ui-utils/types/pascalize.d.ts","../ui-utils/types/index.d.ts","../ui-i18n/types/ApplyLocale/props.d.ts","../ui-i18n/types/ApplyLocale/index.d.ts","../ui-i18n/types/ApplyLocale/ApplyLocaleContext.d.ts","../ui-i18n/types/TextDirectionContext.d.ts","../ui-i18n/types/bidirectional.d.ts","../ui-i18n/types/textDirectionContextConsumer.d.ts","../../node_modules/moment/ts3.1-typings/moment.d.ts","../../node_modules/moment-timezone/index.d.ts","../ui-i18n/types/DateTime.d.ts","../ui-i18n/types/getTextDirection.d.ts","../ui-i18n/types/I18nPropTypes.d.ts","../ui-i18n/types/Locale.d.ts","../ui-i18n/types/ApplyTextDirection/props.d.ts","../ui-i18n/types/ApplyTextDirection/index.d.ts","../ui-i18n/types/index.d.ts","../ui-testable/types/testable.d.ts","../ui-testable/types/index.d.ts","../ui-portal/types/Portal/props.d.ts","../ui-portal/types/Portal/index.d.ts","../ui-portal/types/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/@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-position/types/PositionPropTypes.d.ts","../ui-position/types/Position/props.d.ts","../ui-position/types/Position/index.d.ts","../ui-position/types/calculateElementPosition.d.ts","../ui-position/types/executeMirrorFunction.d.ts","../ui-position/types/mirrorHorizontalPlacement.d.ts","../ui-position/types/mirrorPlacement.d.ts","../ui-position/types/parsePlacement.d.ts","../ui-position/types/index.d.ts","../ui-motion/types/Transition/BaseTransition/props.d.ts","../ui-motion/types/Transition/props.d.ts","../ui-motion/types/Transition/index.d.ts","../ui-motion/types/index.d.ts","../ui-prop-types/types/Children.d.ts","../ui-prop-types/types/childrenOrValue.d.ts","../ui-prop-types/types/controllable.d.ts","../ui-prop-types/types/cursor.d.ts","../ui-prop-types/types/xor.d.ts","../ui-prop-types/types/makeRequirable.d.ts","../ui-prop-types/types/element.d.ts","../ui-prop-types/types/index.d.ts","./src/Tray/props.ts","./src/Tray/styles.ts","../ui-theme-tokens/types/canvas/index.d.ts","../ui-theme-tokens/types/canvasHighContrast/index.d.ts","../ui-theme-tokens/types/instructure/index.d.ts","../ui-theme-tokens/types/utils/functionalColors.d.ts","../ui-theme-tokens/types/index.d.ts","../canvas-high-contrast-theme/types/index.d.ts","../canvas-theme/types/index.d.ts","../instructure-theme/types/index.d.ts","../ui-themes/types/index.d.ts","./src/Tray/theme.ts","./src/Tray/index.tsx","./src/index.ts","../ui-test-queries/types/utils/helpers.d.ts","../ui-test-queries/types/utils/queries.d.ts","../ui-test-queries/types/utils/events.d.ts","../ui-test-queries/types/utils/bindElementToEvents.d.ts","../ui-test-queries/types/utils/bindElementToUtilities.d.ts","../ui-test-queries/types/utils/bindElementToMethods.d.ts","../ui-test-queries/types/utils/selectors.d.ts","../ui-test-queries/types/utils/parseQueryArguments.d.ts","../ui-test-queries/types/utils/queryResult.d.ts","../ui-test-queries/types/utils/firstOrNull.d.ts","../ui-test-queries/types/utils/isElement.d.ts","../ui-test-queries/types/utils/elementToString.d.ts","../ui-test-queries/types/utils/matchers.d.ts","../ui-test-queries/types/index.d.ts","../ui-test-locator/types/utils/locator.d.ts","../ui-test-locator/types/index.d.ts","./src/Tray/TrayLocator.ts","./src/Tray/locator.ts","../../node_modules/@sinonjs/fake-timers/types/fake-timers-src.d.ts","../../node_modules/@types/sinon/index.d.ts","../ui-test-sandbox/types/utils/reactComponentWrapper.d.ts","../ui-test-sandbox/types/utils/sandbox.d.ts","../ui-test-sandbox/types/index.d.ts","../ui-test-utils/types/utils/shims.d.ts","../ui-test-utils/types/utils/waitForExpect.d.ts","../ui-test-utils/types/utils/expect.d.ts","../ui-test-utils/types/utils/generateA11yTests.d.ts","../ui-test-utils/types/utils/generateComponentExamples.d.ts","../ui-test-utils/types/utils/generatePropCombinations.d.ts","../ui-test-utils/types/index.d.ts","./src/Tray/__tests__/Tray.test.tsx","../../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/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/@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},{"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","5923431ad63e007a7e9c4106e9d361e83ab8f3b6b3846aad409c995240cbd53e","0ddfa671606b478cc54eb947b194e169fc2534540ffb69718ccba81096a54869","b9edf78babbbd728f6bce11c1053fadf6b2e942084e01507e9cec45df3310430","e6ce90ddd487c3264c7bcdc5b0ee9a701cb21ad78ec8548c4337ddb0ca8acd14","0632f785ba8cb3d366b1cd17058472c36f921db7207b2ba52f4fce84cf3105b5","792cb92e0d296e7ba7e303783d75fa9287bdf0156b59a52e6daf5799ea77ae63","0bd333078c6935203c4c107610ead914e6e1fd1fb51f6d9bdff5c5510e657966","87bbe13ac31463f9b39ce023a798c6890ccd677eb9d0bf9f01e266eb030eec75","949ec54060052292641e3eb882be3e68f195d6ee4a955cac259679311e498cb9","5aa6ef6666daec7f911aa71ca7190cec24b0db088f5245606d74864de9d4ff34","fea6c9627da96e6da6e876a5c1b79f3e67b0f514fa2624dfbb45efd95faaee80","d4834531347055616df4b0393118c612aa0bba125c4d815d592076ebe9c4e5c8","41e48599506894d01c8974ae4b37e5ae89cd630f6550c407457b0381671a1bd1","a6cf909350d69fe06499618fb34822b452af5544ca7bbc1e46400f9e7423e388","507ed23f7259058415848162fb2d1c88a173ec6d5c3aae2e58ee3ebcaa09ce3f","c147327465a035b4627249c355bd241e017949f8766e97c0d2c6ba5c30009d49","5cdf9f0abb651816bf27dffc7f934a8da7635f0886076b23fbebbe127da2f180","b57db621a6662391fad2667583af66f37183d39b78003d78489d730ba4e2c851","3256b8ac0e96aeafacee33856f42f56347324a8850a7a83626df185291efdb28","055d73a9b0eee13be22cac046d8aa5c132ef7c285cb4d2dd1b3dc3383f217557","b416c261720a63c07b05f49bc3d3dac078a16301c5a1b2c983fffcd177b965d5","304eb84596391315305e707394e43528d4ddb3f0ee4eeedb82eb3d5ffc95d25d","0cb572c52e4addd85f5e58ffa192d15149ce16316d41f2c89d2a2eefba932f57","d152321268a5437a8fb6e962ae04b53d13d7f00338c3b1b42ecd505fd96afe94","04576949b80fd102a2bd07d3e01ef4b9b36d7915ba13c166cad7ae2783c7119b","a29a22cd1ecee2f28e80679fd732fdf9d7d91b65aea71336e32cf0786212dc71","dcd7b9f05a5699258b62964fc0e8cdb1be4822ac09b5bbe2568479693bbe32ba","56013b9deaf9151ea56e2be2d8e2bbd761782f79c45d9e7ce7876f81a500807b","63aace7567341118ea30f0b6553f30b19d94e9464b2442ed95a1f901ceadf509","0a809c5c2f05dc430a78528bf58c9c17b51b24d67e9078f731e1547ae7e79f8a","7af1695141ea7e9511eef0e4965385e17eac8c048662edc2986e064cfa7d5460","653f8d7633aad7eb2072f44b43da1f61c2535c778568e627e0f7af9eff9acb07","6156ccb63064dcbc53051479128854f34dc19ff52594314c498ebc4d771d5aa9","97e66f905c6fa7981e52911fa75f3f6b25e32f2c2efde740d8a10c5c9c6a8a33","37ffe3c12813b6a6d512f7c27b71f3388d03dafa10555ad5094cea393ed3d1f6","9a289f835e173c081f5d1594172daac61ebb66e9c5fbb83b0e51aa6f9481d0d6","33eafaeb29f553f65bd21f8e22499061837ba627df701d88beddda2b4216ec52","2ec4d47bce397037d3fb79f5ad1bf77e6c3fd7d06701407d48dad67ffbeb3c7b","77af8eede757d9024fe38c9a3474894ffe63cce790b14f5d0982ea44c572edec","5afe439c268da5c8ecbce7114aa525661337623c409dcab9eb1ed1e68fd67a3f","d8d64906e098a5791cd6ade7191815e32852929a164cbbf3243a79e9f6194649","e55d4b06351decc15e5c80bca7549269dc8032f559bba536bc71d8b83639fe1f","87faa682a93cfd5edd17ed848505634958a3ec2a80e2f368a5bce0e92271d631","d09c868c2d8e27e71177aef6472e1f73d33b9d6f60fe8e62aff9db578b076495","5a27cfefaf22bf2e090933efc5a1000d4d3bd8aaff65811514b4681e0d52d192","d1136f37111f18b004dd7dfb7fc1d427f3ff4e68c139116bf3201b4fb6526cb1","00e94f95d29fc7ef18133fa97e0490ad5cd9fabf81fcb8875fd4a78cff99ad14","1038130a43b38c3293ade1688878a8160347c1423b49bb3d65d2f4733efea753","2e955a85ad4a5f0daedeeaccdb7f18d39d557913f8aed2407ec0e1788dfb4e22","f9f5b02b40d2c75824c0723d089da0a621c55cf7340e96ddc1c66d3c3fe5938f","00804db6018b756bfa5681d70b4b668186927c20a3a7998209d5d769ce875988","9259cd3205f2ef14c772ecfc237aa5891cb4fcf107c8f2758519b9c834ebe861","47c3e00e515e78f253e3b3dec62e3edc56c3853b73bb2d31d0b1f0c2f89195a5","f97edc4d3b4dd0b32766e9633086497565c37657fb591cc84a35864db4bc2fc5","3ff27a264325767dd546133238d968f649d1376dc119e790fcd1a25661685de7","a5410df44597620dea3fd0de562bcf463b1c5a3ab2805aeb519850810a0f8b79","23476e5308473228ced4404c49e1db9ca85a299211a9d0b39fbf69a3eef74cac","d316bac8af1a0a8ad096d567ff1ffedd7487cd3430aa44d057eb4debf64b36f0","401e7185d7ce3c4377ac70f7300c725392a8302553021c60e1ae6f9ad1363812","9089cd2d76d87d308baa2375ce0b241295ea2bfaf641e12c874e84c6b038bff4","5e469411432031befaea947c78628abf132a4ad1cb715dc96f741d6370e4ac46","e08dc2d611d7709d14e7e6f9a20754ffcd68e27fd3167478452f767a910188d9","2a2c3adc639caab73d388456c25027ea356f7aa3f9790cff51eecaaa9f11de8a","dea54dc9965cb358c29590aaad943ee434c2684d07e640b672ba1aeebbf4a1dd","04b0cdccda616979b1686f8ae66ade0dd7cfe91c8a88e2a276d608b41962fcd8","e8238ecc5618619e9ad6a09774b45ec30857f6976c4b185bfa39113aa0224964","1421e21cef533735423eff806166acb94f38a5a8608d628dfe797e5d23092bd9","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","4b46f4712ae966996b2cc81949d482063887c55478706e25d942482a44b99b71","03d59e612afdc3039a83b12d45b026306b291cfc8e2fc72859f7902b8a857caf","93b24ca76698e62732d72800da132367639a4426363c821338bbbd7cf6b64443","ecfa9ce3a5a37d15b813065e8a7cdf677a0f493018e47ce59815443dfbb9c910","83e56d3337e1a6dbafdbe5a2502a84c330b1a328ed2860d689b2ded82b1f5c95","e630f8a3c49d5db0a8af774799abdb8f19675b940a6cfa25eca35e5280709f28","413c03b679ca5bbe6456b8a38ac999fffb3834d0e4a9638bd186533d629ab8cb","6c023023562b78555d7061de64f5cc84ac140a283abc8b1ac5fa407816f1ad09","34e1b35125c2be711e51df8eecb7b9d1de2e6e32204d7e3106f1ea8e9bcd3a49","5b0d69e9ae4557cf31e51dbdfeccef34ce5a12c837a9a5ed101a13f56e479052","dcafc3d7b14b2d62be06aec141a794d416babf5c1869f33fe30ad9f3da27f93e","648e09f0fc67a5cf40b569f21715dc902a0871e7e1834e663cb365e34df11149","e259f370902d2cddcae6ef20699370758646ab5165f400e95c077e04cb3c7ccf","b120ab27e1e24ec5c6838d4201f84806c4ebf948942de50e51a594cbbb63cd49","6e6eed52e8dd1c66ee42d80d748c29129efcc91b48bd52b57353f79e18118412","8e6a14993e27440402593030a1eb0a4c50ff287a3e33391444a220ac567289a2","07aa5f3c1784f0ceffef3b80df3bdc68c5ba6b55ee8e0057af2d1d769db659cb","0a16257edb376c28a3765354f827aec559c3cedb44e61b321e68050728744533","d19e26cf09d0cc3678fae9489b62464fdd1543fa53332a92e55e2a19b6ede6b3","b9cb6cbb63e9c3a0b769d697265e6d9166b9e8018094c71c45a8afc3fbbb97c6","cb3aa1f6e648bdb1f5c382926535ecc1ca5ee1cb8507a0279a04c617dc34efda","9e406b7921070834fee02175e199572d500db084552fc191298feb5cf66d4ad5","1a4ddf158d6727250d33f7f75c23d63343e008e136ddf4e3d306b941b89bde93","fff657dc5bd7f8d7b95da12e0b84983bc52b87a81cf8fca87b322a4c388cb3e2","453d42e9e169bdf65b5590224a3cb13962a89cf5643344dd61be7a03b897e2e4","d39914608fba902174533fa1aeba8eb6eca68958819ff1b28ab3155c46cc94a5","a6ffde1cdcb87ca2ff1f25ddade9d363bf9af5fd81770c74369c2729ae2cf7a8","a7e0b231c20f3f3b7e7894bad242945bbca08c997c94867b30418a7ea8135850","d96ab00b5cbe76327b7891ee0b36ecd2f5f97f9282dd22f356235df1165d988e","bc6692906d9b65a820db8bb9147d65e08bf1a1c423aba911ec4ed4308282d5b4","611158b20a593e8b7f88ff42daf28a76d2b8fd6d4799fc8a4d1a784127f9d76e","c8adf635022553c2eed842ca07372f70b37f1342daf07e53de567c22011a4b00","65bb6bc4cea005610650b74e2078a3534cb496c3d367856e53653c6c3ffb2e1d","83d29fe39e050c861c42e3ee7653b803ec12ce87a859aad59751ad4db3c334a3","496cef031fd9fc0f3ddfc9eb09cd0629d52f46757eb2deb8304c050656e3a893","67c287c71dfd5298655eaa865250729c6ba5b26140aaf09e1f84ca8def7358ff","2aed6dcaad6282c3bda831313c8db98c94c92732b591a09ddb010e5e48fd536f","f3bbce48725fa989d71bd42ec5e1525d55ebbb6a40a1c86f90b528329b0d008e","de2301af97d31048906e9cc0ab3aecb4f00b2aac950cc8d4cb9809daab125496","c97a23805f192e4cbbc06643665119853182e57a4f07c89f1cc3941a16f6d831","caa1a5f5c34772803bce6af3128bc39298b376e7015471fb27af209a808715f8","b8c456e0fb6ec014ac042767bb89ef4b890abbc0d4f722221e3af732263b6002","d0e23398a3c791b272eaf7e5400a8ff0992db1d38568e017559e9d7bba9e76ab","551058a5d20411e41194e2f1f0b80dfc4f04840b718c3177237e8d3d6a918dcc","0ccb2c677269948b614113fc10f9442ed70e01946a541aa94059332b1d034fa0","a13e8ae38660d8e2d7b6205596051a24348e9475f0c051d76b4db38ebc636bbc","76bf634dfa47ecbcd4a898d62b1d431e2d341f12ca8ddd3495952f80fb677cfc","299963068e45d834423662dbff5613f892787b466a2b2740580228ad64a1575a","84f86cb3f40cb9f7a56bcb5bd7bd95bd34f9c7208d054896c2c1f674cb66f9e9","461f89173b246adca5746f774f6120e728483920ff9d77230444fb39dc919770","344b5e510f5bb707233e9b38159297fbf8f45d5cf82d62bae57ca69a3e100486","cd2add8f15c675e3dacac1c8f56b5a869524e9f1a3fba303202ab029136941a7","abf7e4ec201607a1eda70edebdfc18898246fc1a2921829b45eb96dfca9ea14f","f6f4a7c71df29c89151ac2859287f9d5c048b16201c020c540080fe62dd3fe13","7a7d518894bba9a3f56405429f778d3d04f72f3bd370cb5b76f204ab268a104d","4b95e040bcc966d01058b75b8f54f08537830adb39f4bc4f48605994bfd83d42","4a0968d15c451cf9c441fd35903e2642f96093196dbe8953d2664c5d643822ec","2e20b1c40d6ad9b99e96d96d286d877b644ef2e99d064181f5dd81f8e61540e3","8f2dbfcf703b8fc972c2becd232bf48121c05daedf1c979d712c47f788e98b44","af9edd060ef0fc03f6d82e6ff0e1bcb45de09c558048354b15d07767eee3bd53","4345c45c2ab2ae78224cdff2e3d0088dc57a8cc49271037e9b26afc2c5c9611e","21a78b19d4290b2dfa278ad893ca0b8bc2f6763c9791c1bc6e7179790aecb4a0","a9672437efaed6cf8bf65ea4bf27f4bf044c9945671b7dddfe4d641d8fe7d27d","4d4bcfd062622f0fb4b983c8712ebbc6e6941fd48a97f6f10e7dd8cf605404cc","01ffb10aa10a8a685900e1c1f0063b546998c4ec52da568b4463d896d58e77e1","0a8c058111fb22267a36650e8c1e9b76768a2080ac9b2f8ff973ae6d5da1f7f4","9daa7df3d3078d6931f56db7f0c15ae2f7be8c8f0404b6e51352c7b0f63e141d","909475f5ea428ce4893667056e7a1010edf0b688371555ab27a3d56e8fdba7d3","373e39ee36e9ee6650d70cb7766e5830f774cea49750d09753cab35d323b6378","7bbadc5eedae9b7cede682a0661f65d290d1a85a029091f0971c5d251baee514","354440eaa9ca0410894bfe0e8ee387ae91a3cc0a086e3bd5b6af9081b2aea1e9","4ca5ee29752656f9aff3ea25599529e1e1e0f65b5e3efc9bd17abb9fff2ad249","8b54222eaac5a511a4660afed5a7250d3b9cda26b1510efaf2364312a51eada4","6b40029289530423f407a22755c85b81740f9acfd88d2b53564f8c1657c26660","50a5b297e6c91df4f6068d98467a5e7ba4eeb888b9376757734dd4b1dfcdacd4","0fe4f741a3fcb31775bf564da0f7a3ae43eed30d8a93fcaccdd4071ec922cc7d","1971fab56edab13e6a12b630dcefc509dcc84920a95ffeb7d9b21cbb21857bd1","c8ffadcb410b9cfe5e2785c54830488832f88ed4286a8b328a9aa019fe334e8c","f7933c0e09666eaa6fee3baf5c3516030259ba086fad60d1f60ad40e1acc8526","1b9a40ccb8780e83cf187067a6d976a85cc0d59fcaa10afff62aef2f2fd48ace","71688fc1eba6421dd3d903820021ae6850845a5a8f21a6dbbe71e5b071d13714","c43e48b67102315721a7c81c91d749284448a7d2083c0e5407daf35d5418f0b3","48c428fe3b9f212df5cad0f9cd1bc08acf9ac7e2c5bf29945d363550a84487c5","a064d010c4413651ea096dd08b54e7b4b14d00bd78bd648444b51f6064632c4d",{"version":"8121d381ae01439e67e6757c8379ded7045d2cabcec8951f764942d2a4ec7375","affectsGlobalScope":true},"9683e01e53ab037213ae13bc63b601cd2bfcc2cd89908259b5aff6987a254b76","98f40132aab59240e3daa408377a6f779aa81f4340f4451959cd2eba3750e456","8dfed5c91ad36e69e6da6b7e49be929d4e19666db2b651aa839c485170a2902c","272c2dac4baaf7fdd2d7efeef0fa2547af54cc21883c5e138b8c4d1661697a54","4aaf84a5ac87bad3211f041fab85de5cc42e5954c3ed56842faf6f08167e6202","98f40132aab59240e3daa408377a6f779aa81f4340f4451959cd2eba3750e456","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","98f40132aab59240e3daa408377a6f779aa81f4340f4451959cd2eba3750e456","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","98f40132aab59240e3daa408377a6f779aa81f4340f4451959cd2eba3750e456","71c56bdaa82d7ce75a72d3c06c04fe10becec09bd9c4ef21776a2a055d3f428e","063857f728dfa41428c5a9a4a243e6bfb3a9e046916ce0fe9f864da9401c7d2f","40304c033bb6e39f0eb01b106d29523950148dfc3cd547ddb500167871171281","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","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":[[194,290],[194],[194,202],[45,194,202],[48,194],[48,194,203,204,205,206,207],[48,194,204,208],[48,194,206,208],[194,297],[194,288,289,291,293,295],[194,288],[194,288,291],[166,169,193,194,201,300,301,302],[194,304],[194,308],[194,309,310],[194,309],[169,194],[194,201],[194,304,305],[183,194,201,315,317],[166,167,194,201,322],[169,171,183,193,194,201],[194,325],[166,169,171,174,183,193,194,201],[194,331],[194,331,332],[166,171,194,201,337,338],[166,194,201],[194,340,342,343,344,345,346,347,348,349,350,351,352],[194,340,341,343,344,345,346,347,348,349,350,351,352],[194,341,342,343,344,345,346,347,348,349,350,351,352],[194,340,341,342,344,345,346,347,348,349,350,351,352],[194,340,341,342,343,345,346,347,348,349,350,351,352],[194,340,341,342,343,344,346,347,348,349,350,351,352],[194,340,341,342,343,344,345,347,348,349,350,351,352],[194,340,341,342,343,344,345,346,348,349,350,351,352],[194,340,341,342,343,344,345,346,347,349,350,351,352],[194,340,341,342,343,344,345,346,347,348,350,351,352],[194,340,341,342,343,344,345,346,347,348,349,351,352],[194,340,341,342,343,344,345,346,347,348,349,350,352],[194,340,341,342,343,344,345,346,347,348,349,350,351],[194,299],[169,193,194,201,358,359],[169,183,194,201],[151,194],[154,194],[155,160,194],[156,166,167,174,183,193,194],[156,157,166,174,194],[158,194],[159,160,167,175,194],[160,183,190,194],[161,163,166,174,194],[162,194],[163,164,194],[165,166,194],[166,194],[166,167,168,183,193,194],[166,167,168,183,194],[169,174,183,193,194],[166,167,169,170,174,183,190,193,194],[169,171,183,190,193,194],[151,152,153,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],[166,172,194],[173,193,194],[163,166,174,183,194],[175,194],[176,194],[154,177,194],[178,192,194,198],[179,194],[180,194],[166,181,194],[181,182,194,196],[166,183,184,185,194],[183,185,194],[183,184,194],[186,194],[187,194],[166,188,189,194],[188,189,194],[160,174,190,194],[191,194],[174,192,194],[155,169,180,193,194],[160,194],[183,194,195],[194,196],[194,197],[155,160,166,168,177,183,193,194,196,198],[183,194,199],[48,194,370],[44,45,46,47,194],[194,373,412],[194,373,397,412],[194,412],[194,373],[194,373,398,412],[194,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411],[194,398,412],[194,276,304,413],[194,275],[194,419,420],[194,320,419],[194,320,420],[194,423],[194,201,325,425],[194,201,429,430,431,432,433,434,435,436,437,438,439],[194,428,429,438],[194,429,438],[194,416,428,429,438],[194,429],[160,194,428,438],[194,428,429,430,431,432,433,434,435,436,437,439],[160,194,201,418,423,424,427,440],[194,444],[137,194],[51,52,58,194,249],[48,58,194,209],[58,194],[48,194,209],[194,208,209,210,211,212,220],[46,194,213],[194,213,214,215,216,218,219],[194,217],[51,194],[53,194],[51,52,194],[46,48,194],[51,52,53,54,55,56,57,194],[84,194],[84,85,194],[48,58,194],[58,84,194],[84,85,86,87,88,89,90,194],[48,57,83,91,92,194],[48,58,91,194],[92,93,194],[49,50,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,194],[48,131,194],[48,143,194],[138,194],[46,194],[134,194],[131,132,133,134,135,136,139,140,141,142,143,144,194],[48,57,194,221,231,232],[46,58,194,221,231],[194,232,233],[48,57,148,194],[48,58,145,194],[148,149,194],[48,57,83,194,201,221,222,223],[48,58,194,221,222],[46,58,83,194],[194,222],[194,222,223,224,225,226,227,228,229],[194,225],[46,48,194,235,236,237,238,239,240,241],[95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,194],[194,271],[194,258,259,262,263,264,270],[194,257,258,263,264,265,266,267,268,269],[194,259],[194,261],[194,257,258,260],[194,263],[194,261,263,264],[194,258,261,262,264],[194,262,264],[194,277,278],[48,194,276,277],[194,270,272,279,280,281,282,283,284,285],[48,194,286],[146,194],[194,245,246,247,248],[58,194,250,251,252],[194,255,272],[48,194,255,273,286],[48,94,110,130,145,147,150,194,221,230,234,243,244,254],[194,273],[46,48,58,145,194,221,234,242],[58,194,243],[58,194,253],[194,243,255],[111,194],[118,194],[112,113,114,115,116,117,119,120,121,122,123,124,125,126,127,128,129,194]],"referencedMap":[[291,1],[290,2],[203,3],[204,4],[202,2],[206,5],[208,6],[205,7],[207,8],[275,2],[298,9],[297,10],[296,2],[289,11],[288,2],[293,12],[292,2],[295,11],[294,2],[299,2],[303,13],[305,14],[306,14],[304,2],[307,2],[309,15],[311,16],[310,17],[308,2],[312,2],[313,2],[314,18],[315,19],[316,20],[318,21],[319,2],[320,2],[321,2],[324,2],[323,22],[317,23],[326,24],[327,5],[328,2],[301,2],[329,25],[330,2],[331,2],[332,26],[333,27],[334,2],[335,2],[336,2],[339,28],[338,2],[337,2],[300,29],[341,30],[342,31],[340,32],[343,33],[344,34],[345,35],[346,36],[347,37],[348,38],[349,39],[350,40],[351,41],[352,42],[353,5],[354,24],[355,43],[322,2],[356,2],[357,2],[359,2],[360,44],[358,45],[151,46],[152,46],[154,47],[155,48],[156,49],[157,50],[158,51],[159,52],[160,53],[161,54],[162,55],[163,56],[164,56],[165,57],[166,58],[167,59],[168,60],[153,2],[200,2],[169,61],[170,62],[171,63],[201,64],[172,65],[173,66],[174,67],[175,68],[176,69],[177,70],[178,71],[179,72],[180,73],[181,74],[182,75],[183,76],[185,77],[184,78],[186,79],[187,80],[188,81],[189,82],[190,83],[191,84],[192,85],[193,86],[194,87],[195,88],[196,89],[197,90],[198,91],[199,92],[361,2],[362,58],[363,2],[364,2],[365,2],[366,2],[46,2],[367,2],[368,5],[369,5],[370,93],[44,2],[48,94],[371,19],[302,45],[372,2],[47,2],[397,95],[398,96],[373,97],[376,97],[395,95],[396,95],[386,98],[385,98],[383,95],[378,95],[391,95],[389,95],[393,95],[377,95],[390,95],[394,95],[379,95],[380,95],[392,95],[374,95],[381,95],[382,95],[384,95],[388,95],[399,99],[387,95],[375,95],[412,100],[411,2],[406,99],[408,101],[407,99],[400,99],[401,99],[403,99],[405,99],[409,101],[410,101],[402,101],[404,101],[414,102],[413,103],[276,103],[415,2],[416,2],[417,2],[418,2],[421,104],[420,105],[419,106],[422,2],[424,107],[325,2],[426,108],[442,2],[440,109],[439,110],[430,111],[431,112],[432,112],[433,111],[434,111],[435,111],[436,113],[429,114],[437,110],[438,115],[428,2],[441,116],[427,2],[443,2],[444,2],[445,117],[111,2],[45,2],[138,118],[137,2],[423,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],[425,24],[250,119],[251,119],[210,120],[209,121],[211,122],[221,123],[214,124],[213,121],[216,2],[220,125],[215,121],[217,2],[218,126],[219,126],[212,120],[252,119],[52,127],[51,2],[55,5],[56,5],[54,128],[53,129],[57,130],[58,131],[85,132],[86,133],[84,134],[88,135],[90,132],[87,5],[91,136],[89,134],[93,137],[92,138],[94,139],[49,5],[50,2],[59,121],[60,121],[61,2],[62,121],[63,121],[64,121],[65,121],[66,121],[67,121],[68,2],[69,121],[70,121],[71,121],[72,5],[73,121],[74,121],[75,5],[83,140],[76,121],[77,121],[82,121],[78,121],[79,121],[80,2],[81,2],[133,5],[132,141],[131,5],[144,142],[143,134],[139,143],[141,144],[142,2],[134,5],[135,145],[140,2],[145,146],[136,2],[231,134],[233,147],[232,148],[234,149],[149,150],[148,151],[150,152],[224,153],[223,154],[222,155],[225,156],[226,156],[230,157],[227,156],[228,156],[229,158],[235,5],[236,2],[237,144],[238,144],[241,144],[242,159],[240,144],[239,144],[96,130],[95,5],[97,2],[98,5],[99,5],[101,5],[102,134],[103,2],[100,5],[110,160],[104,5],[105,2],[106,2],[107,2],[108,5],[109,5],[272,161],[271,162],[270,163],[260,164],[262,165],[261,166],[268,2],[259,2],[266,2],[257,2],[267,2],[269,2],[264,167],[258,168],[265,169],[263,170],[279,171],[277,5],[278,172],[286,173],[282,2],[283,174],[284,5],[285,2],[280,2],[281,2],[147,175],[146,5],[245,129],[246,129],[249,176],[247,129],[248,121],[253,177],[273,178],[287,179],[255,180],[274,181],[243,182],[244,183],[254,184],[256,185],[118,2],[112,186],[128,2],[115,2],[116,2],[117,2],[119,187],[120,2],[130,188],[113,2],[121,2],[114,2],[122,2],[123,2],[124,2],[129,2],[125,5],[126,2],[127,2]],"exportedModulesMap":[[291,1],[290,2],[203,3],[204,4],[202,2],[206,5],[208,6],[205,7],[207,8],[275,2],[298,9],[297,10],[296,2],[289,11],[288,2],[293,12],[292,2],[295,11],[294,2],[299,2],[303,13],[305,14],[306,14],[304,2],[307,2],[309,15],[311,16],[310,17],[308,2],[312,2],[313,2],[314,18],[315,19],[316,20],[318,21],[319,2],[320,2],[321,2],[324,2],[323,22],[317,23],[326,24],[327,5],[328,2],[301,2],[329,25],[330,2],[331,2],[332,26],[333,27],[334,2],[335,2],[336,2],[339,28],[338,2],[337,2],[300,29],[341,30],[342,31],[340,32],[343,33],[344,34],[345,35],[346,36],[347,37],[348,38],[349,39],[350,40],[351,41],[352,42],[353,5],[354,24],[355,43],[322,2],[356,2],[357,2],[359,2],[360,44],[358,45],[151,46],[152,46],[154,47],[155,48],[156,49],[157,50],[158,51],[159,52],[160,53],[161,54],[162,55],[163,56],[164,56],[165,57],[166,58],[167,59],[168,60],[153,2],[200,2],[169,61],[170,62],[171,63],[201,64],[172,65],[173,66],[174,67],[175,68],[176,69],[177,70],[178,71],[179,72],[180,73],[181,74],[182,75],[183,76],[185,77],[184,78],[186,79],[187,80],[188,81],[189,82],[190,83],[191,84],[192,85],[193,86],[194,87],[195,88],[196,89],[197,90],[198,91],[199,92],[361,2],[362,58],[363,2],[364,2],[365,2],[366,2],[46,2],[367,2],[368,5],[369,5],[370,93],[44,2],[48,94],[371,19],[302,45],[372,2],[47,2],[397,95],[398,96],[373,97],[376,97],[395,95],[396,95],[386,98],[385,98],[383,95],[378,95],[391,95],[389,95],[393,95],[377,95],[390,95],[394,95],[379,95],[380,95],[392,95],[374,95],[381,95],[382,95],[384,95],[388,95],[399,99],[387,95],[375,95],[412,100],[411,2],[406,99],[408,101],[407,99],[400,99],[401,99],[403,99],[405,99],[409,101],[410,101],[402,101],[404,101],[414,102],[413,103],[276,103],[415,2],[416,2],[417,2],[418,2],[421,104],[420,105],[419,106],[422,2],[424,107],[325,2],[426,108],[442,2],[440,109],[439,110],[430,111],[431,112],[432,112],[433,111],[434,111],[435,111],[436,113],[429,114],[437,110],[438,115],[428,2],[441,116],[427,2],[443,2],[444,2],[445,117],[111,2],[45,2],[138,118],[137,2],[423,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],[425,24],[250,119],[251,119],[210,120],[209,121],[211,122],[221,123],[214,124],[213,121],[216,2],[220,125],[215,121],[217,2],[218,126],[219,126],[212,120],[252,119],[52,127],[51,2],[55,5],[56,5],[54,128],[53,129],[57,130],[58,131],[85,132],[86,133],[84,134],[88,135],[90,132],[87,5],[91,136],[89,134],[93,137],[92,138],[94,139],[49,5],[50,2],[59,121],[60,121],[61,2],[62,121],[63,121],[64,121],[65,121],[66,121],[67,121],[68,2],[69,121],[70,121],[71,121],[72,5],[73,121],[74,121],[75,5],[83,140],[76,121],[77,121],[82,121],[78,121],[79,121],[80,2],[81,2],[133,5],[132,141],[131,5],[144,142],[143,134],[139,143],[141,144],[142,2],[134,5],[135,145],[140,2],[145,146],[136,2],[231,134],[233,147],[232,148],[234,149],[149,150],[148,151],[150,152],[224,153],[223,154],[222,155],[225,156],[226,156],[230,157],[227,156],[228,156],[229,158],[235,5],[236,2],[237,144],[238,144],[241,144],[242,159],[240,144],[239,144],[96,130],[95,5],[97,2],[98,5],[99,5],[101,5],[102,134],[103,2],[100,5],[110,160],[104,5],[105,2],[106,2],[107,2],[108,5],[109,5],[272,161],[271,162],[270,163],[260,164],[262,165],[261,166],[268,2],[259,2],[266,2],[257,2],[267,2],[269,2],[264,167],[258,168],[265,169],[263,170],[279,171],[277,5],[278,172],[286,173],[282,2],[283,174],[284,5],[285,2],[280,2],[281,2],[147,175],[146,5],[245,129],[246,129],[249,176],[247,129],[248,121],[253,177],[273,178],[287,179],[255,180],[274,181],[243,182],[244,183],[254,184],[256,185],[118,2],[112,186],[128,2],[115,2],[116,2],[117,2],[119,187],[120,2],[130,188],[113,2],[121,2],[114,2],[122,2],[123,2],[124,2],[129,2],[125,5],[126,2],[127,2]],"semanticDiagnosticsPerFile":[291,290,203,204,202,206,208,205,207,275,298,297,296,289,288,293,292,295,294,299,303,305,306,304,307,309,311,310,308,312,313,314,315,316,318,319,320,321,324,323,317,326,327,328,301,329,330,331,332,333,334,335,336,339,338,337,300,341,342,340,343,344,345,346,347,348,349,350,351,352,353,354,355,322,356,357,359,360,358,151,152,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,153,200,169,170,171,201,172,173,174,175,176,177,178,179,180,181,182,183,185,184,186,187,188,189,190,191,192,193,194,195,196,197,198,199,361,362,363,364,365,366,46,367,368,369,370,44,48,371,302,372,47,397,398,373,376,395,396,386,385,383,378,391,389,393,377,390,394,379,380,392,374,381,382,384,388,399,387,375,412,411,406,408,407,400,401,403,405,409,410,402,404,414,413,276,415,416,417,418,421,420,419,422,424,325,426,442,440,439,430,431,432,433,434,435,436,429,437,438,428,441,427,443,444,445,111,45,138,137,423,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,425,250,251,210,209,211,221,214,213,216,220,215,217,218,219,212,252,52,51,55,56,54,53,57,58,85,86,84,88,90,87,91,89,93,92,94,49,50,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,83,76,77,82,78,79,80,81,133,132,131,144,143,139,141,142,134,135,140,145,136,231,233,232,234,149,148,150,224,223,222,225,226,230,227,228,229,235,236,237,238,241,242,240,239,96,95,97,98,99,101,102,103,100,110,104,105,106,107,108,109,272,271,270,260,262,261,268,259,266,257,267,269,264,258,265,263,279,277,278,286,282,283,284,285,280,281,147,146,245,246,249,247,248,253,273,287,255,274,243,244,254,256,118,112,128,115,116,117,119,120,130,113,121,114,122,123,124,129,125,126,127]},"version":"4.4.3"}
|
|
@@ -22,25 +22,15 @@ export declare const TrayLocator: {
|
|
|
22
22
|
toString: (maxLength?: number | undefined, options?: {
|
|
23
23
|
highlight: boolean;
|
|
24
24
|
} | undefined) => string;
|
|
25
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
26
|
-
children: (selector: string) => Element[];
|
|
27
|
-
title: () => string | null | undefined;
|
|
28
|
-
id: () => string;
|
|
29
|
-
tagName: () => string;
|
|
30
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
31
|
-
getBoundingClientRect: () => DOMRect;
|
|
32
|
-
matches: (selector: string | undefined) => boolean;
|
|
33
25
|
visible: () => boolean;
|
|
34
|
-
value: () => string | null;
|
|
35
|
-
disabled: () => string | null;
|
|
36
|
-
role: () => string | null;
|
|
37
|
-
label: () => string | null | undefined;
|
|
38
26
|
getId: () => string;
|
|
39
27
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
40
28
|
getOwnerDocument: () => Document;
|
|
41
29
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
42
30
|
getTagName: () => string;
|
|
31
|
+
tagName: () => string;
|
|
43
32
|
typeIn: (text: string) => Promise<void>;
|
|
33
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
44
34
|
getDOMNode: () => Element;
|
|
45
35
|
node: () => Element;
|
|
46
36
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -50,6 +40,7 @@ export declare const TrayLocator: {
|
|
|
50
40
|
getTextContent: () => string | null;
|
|
51
41
|
getParentNode: () => ParentNode | null;
|
|
52
42
|
parent: () => ParentNode | null;
|
|
43
|
+
getBoundingClientRect: () => DOMRect;
|
|
53
44
|
rect: () => DOMRect;
|
|
54
45
|
hasClass: (classname: string) => boolean;
|
|
55
46
|
containsFocus: () => boolean;
|
|
@@ -61,17 +52,25 @@ export declare const TrayLocator: {
|
|
|
61
52
|
exists: () => boolean;
|
|
62
53
|
text: () => string | null;
|
|
63
54
|
empty: () => boolean;
|
|
55
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
64
56
|
descendants: (selector: string) => Element[];
|
|
65
57
|
ancestors: (selector: string) => ParentNode[];
|
|
66
58
|
attribute: (qualifiedName: string) => string | null;
|
|
67
59
|
style: (property: string) => string;
|
|
68
60
|
classNames: () => string[];
|
|
61
|
+
id: () => string;
|
|
62
|
+
matches: (selector: string | undefined) => boolean;
|
|
69
63
|
checked: () => any;
|
|
70
64
|
selected: () => any;
|
|
65
|
+
disabled: () => string | null;
|
|
71
66
|
readonly: () => any;
|
|
67
|
+
role: () => string | null;
|
|
68
|
+
value: () => string | null;
|
|
69
|
+
label: () => string | null | undefined;
|
|
70
|
+
title: () => string | null | undefined;
|
|
71
|
+
children: (selector: string) => Element[];
|
|
72
72
|
parents: (selector: string) => ParentNode[];
|
|
73
73
|
} & {
|
|
74
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
75
74
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
76
75
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
77
76
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -109,6 +108,7 @@ export declare const TrayLocator: {
|
|
|
109
108
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
110
109
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
111
110
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
111
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
112
112
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
113
113
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
114
114
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -161,25 +161,15 @@ export declare const TrayLocator: {
|
|
|
161
161
|
toString: (maxLength?: number | undefined, options?: {
|
|
162
162
|
highlight: boolean;
|
|
163
163
|
} | undefined) => string;
|
|
164
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
165
|
-
children: (selector: string) => Element[];
|
|
166
|
-
title: () => string | null | undefined;
|
|
167
|
-
id: () => string;
|
|
168
|
-
tagName: () => string;
|
|
169
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
170
|
-
getBoundingClientRect: () => DOMRect;
|
|
171
|
-
matches: (selector: string | undefined) => boolean;
|
|
172
164
|
visible: () => boolean;
|
|
173
|
-
value: () => string | null;
|
|
174
|
-
disabled: () => string | null;
|
|
175
|
-
role: () => string | null;
|
|
176
|
-
label: () => string | null | undefined;
|
|
177
165
|
getId: () => string;
|
|
178
166
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
179
167
|
getOwnerDocument: () => Document;
|
|
180
168
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
181
169
|
getTagName: () => string;
|
|
170
|
+
tagName: () => string;
|
|
182
171
|
typeIn: (text: string) => Promise<void>;
|
|
172
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
183
173
|
getDOMNode: () => Element;
|
|
184
174
|
node: () => Element;
|
|
185
175
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -189,6 +179,7 @@ export declare const TrayLocator: {
|
|
|
189
179
|
getTextContent: () => string | null;
|
|
190
180
|
getParentNode: () => ParentNode | null;
|
|
191
181
|
parent: () => ParentNode | null;
|
|
182
|
+
getBoundingClientRect: () => DOMRect;
|
|
192
183
|
rect: () => DOMRect;
|
|
193
184
|
hasClass: (classname: string) => boolean;
|
|
194
185
|
containsFocus: () => boolean;
|
|
@@ -200,17 +191,25 @@ export declare const TrayLocator: {
|
|
|
200
191
|
exists: () => boolean;
|
|
201
192
|
text: () => string | null;
|
|
202
193
|
empty: () => boolean;
|
|
194
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
203
195
|
descendants: (selector: string) => Element[];
|
|
204
196
|
ancestors: (selector: string) => ParentNode[];
|
|
205
197
|
attribute: (qualifiedName: string) => string | null;
|
|
206
198
|
style: (property: string) => string;
|
|
207
199
|
classNames: () => string[];
|
|
200
|
+
id: () => string;
|
|
201
|
+
matches: (selector: string | undefined) => boolean;
|
|
208
202
|
checked: () => any;
|
|
209
203
|
selected: () => any;
|
|
204
|
+
disabled: () => string | null;
|
|
210
205
|
readonly: () => any;
|
|
206
|
+
role: () => string | null;
|
|
207
|
+
value: () => string | null;
|
|
208
|
+
label: () => string | null | undefined;
|
|
209
|
+
title: () => string | null | undefined;
|
|
210
|
+
children: (selector: string) => Element[];
|
|
211
211
|
parents: (selector: string) => ParentNode[];
|
|
212
212
|
} & {
|
|
213
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
214
213
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
215
214
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
216
215
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -248,6 +247,7 @@ export declare const TrayLocator: {
|
|
|
248
247
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
249
248
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
250
249
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
250
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
251
251
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
252
252
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
253
253
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -300,25 +300,15 @@ export declare const TrayLocator: {
|
|
|
300
300
|
toString: (maxLength?: number | undefined, options?: {
|
|
301
301
|
highlight: boolean;
|
|
302
302
|
} | undefined) => string;
|
|
303
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
304
|
-
children: (selector: string) => Element[];
|
|
305
|
-
title: () => string | null | undefined;
|
|
306
|
-
id: () => string;
|
|
307
|
-
tagName: () => string;
|
|
308
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
309
|
-
getBoundingClientRect: () => DOMRect;
|
|
310
|
-
matches: (selector: string | undefined) => boolean;
|
|
311
303
|
visible: () => boolean;
|
|
312
|
-
value: () => string | null;
|
|
313
|
-
disabled: () => string | null;
|
|
314
|
-
role: () => string | null;
|
|
315
|
-
label: () => string | null | undefined;
|
|
316
304
|
getId: () => string;
|
|
317
305
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
318
306
|
getOwnerDocument: () => Document;
|
|
319
307
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
320
308
|
getTagName: () => string;
|
|
309
|
+
tagName: () => string;
|
|
321
310
|
typeIn: (text: string) => Promise<void>;
|
|
311
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
322
312
|
getDOMNode: () => Element;
|
|
323
313
|
node: () => Element;
|
|
324
314
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -328,6 +318,7 @@ export declare const TrayLocator: {
|
|
|
328
318
|
getTextContent: () => string | null;
|
|
329
319
|
getParentNode: () => ParentNode | null;
|
|
330
320
|
parent: () => ParentNode | null;
|
|
321
|
+
getBoundingClientRect: () => DOMRect;
|
|
331
322
|
rect: () => DOMRect;
|
|
332
323
|
hasClass: (classname: string) => boolean;
|
|
333
324
|
containsFocus: () => boolean;
|
|
@@ -339,17 +330,25 @@ export declare const TrayLocator: {
|
|
|
339
330
|
exists: () => boolean;
|
|
340
331
|
text: () => string | null;
|
|
341
332
|
empty: () => boolean;
|
|
333
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
342
334
|
descendants: (selector: string) => Element[];
|
|
343
335
|
ancestors: (selector: string) => ParentNode[];
|
|
344
336
|
attribute: (qualifiedName: string) => string | null;
|
|
345
337
|
style: (property: string) => string;
|
|
346
338
|
classNames: () => string[];
|
|
339
|
+
id: () => string;
|
|
340
|
+
matches: (selector: string | undefined) => boolean;
|
|
347
341
|
checked: () => any;
|
|
348
342
|
selected: () => any;
|
|
343
|
+
disabled: () => string | null;
|
|
349
344
|
readonly: () => any;
|
|
345
|
+
role: () => string | null;
|
|
346
|
+
value: () => string | null;
|
|
347
|
+
label: () => string | null | undefined;
|
|
348
|
+
title: () => string | null | undefined;
|
|
349
|
+
children: (selector: string) => Element[];
|
|
350
350
|
parents: (selector: string) => ParentNode[];
|
|
351
351
|
} & {
|
|
352
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
353
352
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
354
353
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
355
354
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -387,6 +386,7 @@ export declare const TrayLocator: {
|
|
|
387
386
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
388
387
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
389
388
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
389
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
390
390
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
391
391
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
392
392
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -439,25 +439,15 @@ export declare const TrayLocator: {
|
|
|
439
439
|
toString: (maxLength?: number | undefined, options?: {
|
|
440
440
|
highlight: boolean;
|
|
441
441
|
} | undefined) => string;
|
|
442
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
443
|
-
children: (selector: string) => Element[];
|
|
444
|
-
title: () => string | null | undefined;
|
|
445
|
-
id: () => string;
|
|
446
|
-
tagName: () => string;
|
|
447
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
448
|
-
getBoundingClientRect: () => DOMRect;
|
|
449
|
-
matches: (selector: string | undefined) => boolean;
|
|
450
442
|
visible: () => boolean;
|
|
451
|
-
value: () => string | null;
|
|
452
|
-
disabled: () => string | null;
|
|
453
|
-
role: () => string | null;
|
|
454
|
-
label: () => string | null | undefined;
|
|
455
443
|
getId: () => string;
|
|
456
444
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
457
445
|
getOwnerDocument: () => Document;
|
|
458
446
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
459
447
|
getTagName: () => string;
|
|
448
|
+
tagName: () => string;
|
|
460
449
|
typeIn: (text: string) => Promise<void>;
|
|
450
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
461
451
|
getDOMNode: () => Element;
|
|
462
452
|
node: () => Element;
|
|
463
453
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -467,6 +457,7 @@ export declare const TrayLocator: {
|
|
|
467
457
|
getTextContent: () => string | null;
|
|
468
458
|
getParentNode: () => ParentNode | null;
|
|
469
459
|
parent: () => ParentNode | null;
|
|
460
|
+
getBoundingClientRect: () => DOMRect;
|
|
470
461
|
rect: () => DOMRect;
|
|
471
462
|
hasClass: (classname: string) => boolean;
|
|
472
463
|
containsFocus: () => boolean;
|
|
@@ -478,17 +469,25 @@ export declare const TrayLocator: {
|
|
|
478
469
|
exists: () => boolean;
|
|
479
470
|
text: () => string | null;
|
|
480
471
|
empty: () => boolean;
|
|
472
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
481
473
|
descendants: (selector: string) => Element[];
|
|
482
474
|
ancestors: (selector: string) => ParentNode[];
|
|
483
475
|
attribute: (qualifiedName: string) => string | null;
|
|
484
476
|
style: (property: string) => string;
|
|
485
477
|
classNames: () => string[];
|
|
478
|
+
id: () => string;
|
|
479
|
+
matches: (selector: string | undefined) => boolean;
|
|
486
480
|
checked: () => any;
|
|
487
481
|
selected: () => any;
|
|
482
|
+
disabled: () => string | null;
|
|
488
483
|
readonly: () => any;
|
|
484
|
+
role: () => string | null;
|
|
485
|
+
value: () => string | null;
|
|
486
|
+
label: () => string | null | undefined;
|
|
487
|
+
title: () => string | null | undefined;
|
|
488
|
+
children: (selector: string) => Element[];
|
|
489
489
|
parents: (selector: string) => ParentNode[];
|
|
490
490
|
} & {
|
|
491
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
492
491
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
493
492
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
494
493
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -526,6 +525,7 @@ export declare const TrayLocator: {
|
|
|
526
525
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
527
526
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
528
527
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
528
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
529
529
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
530
530
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
531
531
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
package/types/Tray/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
/** @jsx jsx */
|
|
2
2
|
import { Component } from 'react';
|
|
3
3
|
import type { PortalNode } from '@instructure/ui-portal';
|
|
4
|
+
import type { TransitionType } from '@instructure/ui-motion';
|
|
4
5
|
import { jsx } from '@instructure/emotion';
|
|
5
6
|
import type { TrayProps } from './props';
|
|
6
7
|
/**
|
|
@@ -20,8 +21,8 @@ declare class Tray extends Component<TrayProps> {
|
|
|
20
21
|
shouldContainFocus?: boolean | undefined;
|
|
21
22
|
shouldReturnFocus?: boolean | undefined;
|
|
22
23
|
shouldCloseOnDocumentClick?: boolean | undefined;
|
|
23
|
-
onOpen?: ((
|
|
24
|
-
onClose?: ((
|
|
24
|
+
onOpen?: ((type?: TransitionType | undefined) => void) | undefined;
|
|
25
|
+
onClose?: ((type?: TransitionType | undefined) => void) | undefined;
|
|
25
26
|
onDismiss?: ((...args: any[]) => any) | undefined;
|
|
26
27
|
mountNode?: any;
|
|
27
28
|
insertAt?: "top" | "bottom" | undefined;
|
|
@@ -29,10 +30,10 @@ declare class Tray extends Component<TrayProps> {
|
|
|
29
30
|
onTransition?: ((...args: any[]) => any) | undefined;
|
|
30
31
|
onEnter?: ((...args: any[]) => any) | undefined;
|
|
31
32
|
onEntering?: ((...args: any[]) => any) | undefined;
|
|
32
|
-
onEntered?: ((
|
|
33
|
+
onEntered?: ((type?: TransitionType | undefined) => void) | undefined;
|
|
33
34
|
onExit?: ((...args: any[]) => any) | undefined;
|
|
34
35
|
onExiting?: ((...args: any[]) => any) | undefined;
|
|
35
|
-
onExited?: ((
|
|
36
|
+
onExited?: ((type?: TransitionType | undefined) => void) | undefined;
|
|
36
37
|
border?: boolean | undefined;
|
|
37
38
|
shadow?: boolean | undefined;
|
|
38
39
|
children?: import("react").ReactNode;
|
|
@@ -47,8 +48,8 @@ declare class Tray extends Component<TrayProps> {
|
|
|
47
48
|
shouldContainFocus?: boolean | undefined;
|
|
48
49
|
shouldReturnFocus?: boolean | undefined;
|
|
49
50
|
shouldCloseOnDocumentClick?: boolean | undefined;
|
|
50
|
-
onOpen?: ((
|
|
51
|
-
onClose?: ((
|
|
51
|
+
onOpen?: ((type?: TransitionType | undefined) => void) | undefined;
|
|
52
|
+
onClose?: ((type?: TransitionType | undefined) => void) | undefined;
|
|
52
53
|
onDismiss?: ((...args: any[]) => any) | undefined;
|
|
53
54
|
mountNode?: any;
|
|
54
55
|
insertAt?: "top" | "bottom" | undefined;
|
|
@@ -56,10 +57,10 @@ declare class Tray extends Component<TrayProps> {
|
|
|
56
57
|
onTransition?: ((...args: any[]) => any) | undefined;
|
|
57
58
|
onEnter?: ((...args: any[]) => any) | undefined;
|
|
58
59
|
onEntering?: ((...args: any[]) => any) | undefined;
|
|
59
|
-
onEntered?: ((
|
|
60
|
+
onEntered?: ((type?: TransitionType | undefined) => void) | undefined;
|
|
60
61
|
onExit?: ((...args: any[]) => any) | undefined;
|
|
61
62
|
onExiting?: ((...args: any[]) => any) | undefined;
|
|
62
|
-
onExited?: ((
|
|
63
|
+
onExited?: ((type?: TransitionType | undefined) => void) | undefined;
|
|
63
64
|
border?: boolean | undefined;
|
|
64
65
|
shadow?: boolean | undefined;
|
|
65
66
|
children?: import("react").ReactNode;
|
|
@@ -99,7 +100,7 @@ declare class Tray extends Component<TrayProps> {
|
|
|
99
100
|
get direction(): "up" | "down" | "right" | "left";
|
|
100
101
|
get transition(): string;
|
|
101
102
|
get defaultFocusElement(): import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | ((...args: any[]) => any);
|
|
102
|
-
handleTransitionComplete: () => void;
|
|
103
|
+
handleTransitionComplete: (_type?: TransitionType | undefined) => void;
|
|
103
104
|
get DOMNode(): Element | null;
|
|
104
105
|
set DOMNode(el: Element | null);
|
|
105
106
|
handlePortalOpen: (DOMNode: PortalNode) => void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/Tray/index.tsx"],"names":[],"mappings":"AAwBA,eAAe;AACf,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAQjC,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,wBAAwB,CAAA;AAGxD,OAAO,EAAa,GAAG,EAAE,MAAM,sBAAsB,CAAA;AAIrD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAExC;;;;GAIG;AACH,cAGM,IAAK,SAAQ,SAAS,CAAC,SAAS,CAAC;IACrC,MAAM,CAAC,QAAQ,CAAC,WAAW,UAAS;IAEpC,MAAM,CAAC,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;SAAe;IAClC,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;OAAY;IAE5B,MAAM,CAAC,YAAY;;;;;;;;;;;;;;;;;;;;;;;;MA4BlB;IAED,KAAK;;MAEJ;IAED,GAAG,EAAE,OAAO,GAAG,IAAI,CAAO;IAE1B,iBAAiB;IAKjB,kBAAkB,CAAC,SAAS,KAAA,EAAE,SAAS,KAAA,EAAE,QAAQ,KAAA;IAOjD,IAAI,SAAS,kFAIZ;IAED,IAAI,SAAS,qCAYZ;IAED,IAAI,UAAU,WAEb;IAED,IAAI,mBAAmB,uHAGtB;IAED,wBAAwB
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/Tray/index.tsx"],"names":[],"mappings":"AAwBA,eAAe;AACf,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAQjC,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,wBAAwB,CAAA;AAGxD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAA;AAC5D,OAAO,EAAa,GAAG,EAAE,MAAM,sBAAsB,CAAA;AAIrD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAExC;;;;GAIG;AACH,cAGM,IAAK,SAAQ,SAAS,CAAC,SAAS,CAAC;IACrC,MAAM,CAAC,QAAQ,CAAC,WAAW,UAAS;IAEpC,MAAM,CAAC,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;SAAe;IAClC,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;OAAY;IAE5B,MAAM,CAAC,YAAY;;;;;;;;;;;;;;;;;;;;;;;;MA4BlB;IAED,KAAK;;MAEJ;IAED,GAAG,EAAE,OAAO,GAAG,IAAI,CAAO;IAE1B,iBAAiB;IAKjB,kBAAkB,CAAC,SAAS,KAAA,EAAE,SAAS,KAAA,EAAE,QAAQ,KAAA;IAOjD,IAAI,SAAS,kFAIZ;IAED,IAAI,SAAS,qCAYZ;IAED,IAAI,UAAU,WAEb;IAED,IAAI,mBAAmB,uHAGtB;IAED,wBAAwB,+CAEvB;IAED,IAAI,OAAO,mBAMV;IAED,IAAI,OAAO,CAAC,EAAE,gBAAA,EAEb;IAED,gBAAgB,YAAa,UAAU,UAEtC;IAED,MAAM;CA4FP;AAED,eAAe,IAAI,CAAA;AACnB,OAAO,EAAE,IAAI,EAAE,CAAA"}
|
package/types/Tray/props.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import React from 'react';
|
|
|
2
2
|
import type { WithStyleProps, ComponentStyle } from '@instructure/emotion';
|
|
3
3
|
import type { OtherHTMLAttributes, PropValidators, TrayTheme, LiveRegion } from '@instructure/shared-types';
|
|
4
4
|
import type { BidirectionalProps } from '@instructure/ui-i18n';
|
|
5
|
+
import type { TransitionType } from '@instructure/ui-motion';
|
|
5
6
|
declare type TrayOwnProps = {
|
|
6
7
|
label: string;
|
|
7
8
|
size?: 'x-small' | 'small' | 'regular' | 'medium' | 'large';
|
|
@@ -12,8 +13,8 @@ declare type TrayOwnProps = {
|
|
|
12
13
|
shouldContainFocus?: boolean;
|
|
13
14
|
shouldReturnFocus?: boolean;
|
|
14
15
|
shouldCloseOnDocumentClick?: boolean;
|
|
15
|
-
onOpen?: (
|
|
16
|
-
onClose?: (
|
|
16
|
+
onOpen?: (type?: TransitionType) => void;
|
|
17
|
+
onClose?: (type?: TransitionType) => void;
|
|
17
18
|
onDismiss?: (...args: any[]) => any;
|
|
18
19
|
mountNode?: any;
|
|
19
20
|
insertAt?: 'bottom' | 'top';
|
|
@@ -21,10 +22,10 @@ declare type TrayOwnProps = {
|
|
|
21
22
|
onTransition?: (...args: any[]) => any;
|
|
22
23
|
onEnter?: (...args: any[]) => any;
|
|
23
24
|
onEntering?: (...args: any[]) => any;
|
|
24
|
-
onEntered?: (
|
|
25
|
+
onEntered?: (type?: TransitionType) => void;
|
|
25
26
|
onExit?: (...args: any[]) => any;
|
|
26
27
|
onExiting?: (...args: any[]) => any;
|
|
27
|
-
onExited?: (
|
|
28
|
+
onExited?: (type?: TransitionType) => void;
|
|
28
29
|
border?: boolean;
|
|
29
30
|
shadow?: boolean;
|
|
30
31
|
children?: React.ReactNode;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../src/Tray/props.ts"],"names":[],"mappings":"AAwBA,OAAO,KAAK,MAAM,OAAO,CAAA;AAKzB,OAAO,KAAK,EAAE,cAAc,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAA;AAC1E,OAAO,KAAK,EACV,mBAAmB,EACnB,cAAc,EACd,SAAS,EACT,UAAU,EACX,MAAM,2BAA2B,CAAA;AAClC,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAA;
|
|
1
|
+
{"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../src/Tray/props.ts"],"names":[],"mappings":"AAwBA,OAAO,KAAK,MAAM,OAAO,CAAA;AAKzB,OAAO,KAAK,EAAE,cAAc,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAA;AAC1E,OAAO,KAAK,EACV,mBAAmB,EACnB,cAAc,EACd,SAAS,EACT,UAAU,EACX,MAAM,2BAA2B,CAAA;AAClC,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAA;AAC9D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAA;AAE5D,aAAK,YAAY,GAAG;IAClB,KAAK,EAAE,MAAM,CAAA;IACb,IAAI,CAAC,EAAE,SAAS,GAAG,OAAO,GAAG,SAAS,GAAG,QAAQ,GAAG,OAAO,CAAA;IAC3D,SAAS,CAAC,EAAE,KAAK,GAAG,QAAQ,GAAG,OAAO,GAAG,KAAK,GAAG,QAAQ,CAAA;IACzD,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,mBAAmB,CAAC,EAAE,KAAK,CAAC,YAAY,GAAG,CAAC,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAC,CAAA;IACpE,UAAU,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAA;IACpC,kBAAkB,CAAC,EAAE,OAAO,CAAA;IAC5B,iBAAiB,CAAC,EAAE,OAAO,CAAA;IAC3B,0BAA0B,CAAC,EAAE,OAAO,CAAA;IACpC,MAAM,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,cAAc,KAAK,IAAI,CAAA;IACxC,OAAO,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,cAAc,KAAK,IAAI,CAAA;IACzC,SAAS,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAA;IACnC,SAAS,CAAC,EAAE,GAAG,CAAA;IACf,QAAQ,CAAC,EAAE,QAAQ,GAAG,KAAK,CAAA;IAC3B,UAAU,CAAC,EAAE,UAAU,CAAA;IACvB,YAAY,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAA;IACtC,OAAO,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAA;IACjC,UAAU,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAA;IACpC,SAAS,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,cAAc,KAAK,IAAI,CAAA;IAC3C,MAAM,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAA;IAChC,SAAS,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAA;IACnC,QAAQ,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,cAAc,KAAK,IAAI,CAAA;IAC1C,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;CAC3B,CAAA;AAED,aAAK,QAAQ,GAAG,MAAM,YAAY,CAAA;AAElC,aAAK,eAAe,GAAG,QAAQ,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAA;AAEhD,aAAK,SAAS,GAAG,YAAY,GAC3B,kBAAkB,GAClB,cAAc,CAAC,SAAS,EAAE,SAAS,CAAC,GACpC,mBAAmB,CAAC,YAAY,CAAC,CAAA;AAEnC,aAAK,SAAS,GAAG,cAAc,CAAC,MAAM,GAAG,SAAS,CAAC,CAAA;AAEnD,QAAA,MAAM,SAAS,EAAE,cAAc,CAAC,QAAQ,CAuHvC,CAAA;AAED,QAAA,MAAM,YAAY,EAAE,eA0BnB,CAAA;AAED,YAAY,EAAE,SAAS,EAAE,SAAS,EAAE,CAAA;AACpC,OAAO,EAAE,SAAS,EAAE,YAAY,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.
|