@instructure/ui-position 10.19.2-snapshot-2 → 10.19.2-snapshot-4

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.
Files changed (39) hide show
  1. package/CHANGELOG.md +1 -1
  2. package/package.json +15 -16
  3. package/tsconfig.build.json +0 -3
  4. package/tsconfig.build.tsbuildinfo +1 -1
  5. package/es/Position/PositionContentLocator.js +0 -27
  6. package/es/Position/PositionLocator.js +0 -48
  7. package/es/Position/PositionTargetLocator.js +0 -27
  8. package/es/Position/__new-tests__/Position.test.js +0 -623
  9. package/es/Position/locator.js +0 -28
  10. package/es/__new-tests__/mirrorHorizontalPlacement.test.js +0 -68
  11. package/es/__new-tests__/mirrorPlacement.test.js +0 -68
  12. package/lib/Position/PositionContentLocator.js +0 -33
  13. package/lib/Position/PositionLocator.js +0 -65
  14. package/lib/Position/PositionTargetLocator.js +0 -33
  15. package/lib/Position/__new-tests__/Position.test.js +0 -624
  16. package/lib/Position/locator.js +0 -55
  17. package/lib/__new-tests__/mirrorHorizontalPlacement.test.js +0 -70
  18. package/lib/__new-tests__/mirrorPlacement.test.js +0 -70
  19. package/src/Position/PositionContentLocator.ts +0 -30
  20. package/src/Position/PositionLocator.ts +0 -55
  21. package/src/Position/PositionTargetLocator.ts +0 -30
  22. package/src/Position/__new-tests__/Position.test.tsx +0 -586
  23. package/src/Position/locator.ts +0 -34
  24. package/src/__new-tests__/mirrorHorizontalPlacement.test.tsx +0 -115
  25. package/src/__new-tests__/mirrorPlacement.test.tsx +0 -113
  26. package/types/Position/PositionContentLocator.d.ts +0 -310
  27. package/types/Position/PositionContentLocator.d.ts.map +0 -1
  28. package/types/Position/PositionLocator.d.ts +0 -1221
  29. package/types/Position/PositionLocator.d.ts.map +0 -1
  30. package/types/Position/PositionTargetLocator.d.ts +0 -310
  31. package/types/Position/PositionTargetLocator.d.ts.map +0 -1
  32. package/types/Position/__new-tests__/Position.test.d.ts +0 -2
  33. package/types/Position/__new-tests__/Position.test.d.ts.map +0 -1
  34. package/types/Position/locator.d.ts +0 -5
  35. package/types/Position/locator.d.ts.map +0 -1
  36. package/types/__new-tests__/mirrorHorizontalPlacement.test.d.ts +0 -2
  37. package/types/__new-tests__/mirrorHorizontalPlacement.test.d.ts.map +0 -1
  38. package/types/__new-tests__/mirrorPlacement.test.d.ts +0 -2
  39. package/types/__new-tests__/mirrorPlacement.test.d.ts.map +0 -1
@@ -1,115 +0,0 @@
1
- /*
2
- * The MIT License (MIT)
3
- *
4
- * Copyright (c) 2015 - present Instructure, Inc.
5
- *
6
- * Permission is hereby granted, free of charge, to any person obtaining a copy
7
- * of this software and associated documentation files (the "Software"), to deal
8
- * in the Software without restriction, including without limitation the rights
9
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
- * copies of the Software, and to permit persons to whom the Software is
11
- * furnished to do so, subject to the following conditions:
12
- *
13
- * The above copyright notice and this permission notice shall be included in all
14
- * copies or substantial portions of the Software.
15
- *
16
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
- * SOFTWARE.
23
- */
24
-
25
- import { mirrorHorizontalPlacement } from '../mirrorHorizontalPlacement'
26
- import {
27
- PlacementPropValues,
28
- placementPropValues,
29
- PlacementValueArray
30
- } from '../PositionPropTypes'
31
- import '@testing-library/jest-dom'
32
-
33
- const mirrorHorizontallyAsArrayMap = [
34
- ['top'],
35
- ['bottom'],
36
- ['end'],
37
- ['start'],
38
- ['top', 'end'],
39
- ['top', 'center'],
40
- ['top', 'start'],
41
- ['top', 'stretch'],
42
- ['bottom', 'end'],
43
- ['bottom', 'center'],
44
- ['bottom', 'start'],
45
- ['bottom', 'stretch'],
46
- ['end', 'top'],
47
- ['end', 'center'],
48
- ['end', 'bottom'],
49
- ['end', 'stretch'],
50
- ['start', 'top'],
51
- ['start', 'center'],
52
- ['start', 'bottom'],
53
- ['start', 'stretch'],
54
- ['center', 'end'],
55
- ['center', 'start'],
56
- ['offscreen']
57
- ]
58
-
59
- describe('mirrorHorizontalPlacement', () => {
60
- describe('when string is passed', () => {
61
- describe('without delimiter should return mirrored values as array', () => {
62
- placementPropValues.forEach((placement, idx) => {
63
- it(placement, () => {
64
- const mirrored = mirrorHorizontalPlacement(
65
- placement as PlacementPropValues
66
- )
67
-
68
- expect(mirrored[0]).toEqual(mirrorHorizontallyAsArrayMap[idx][0])
69
- expect(mirrored[1]).toEqual(mirrorHorizontallyAsArrayMap[idx][1])
70
- })
71
- })
72
- })
73
-
74
- describe('with delimiter should return mirrored values as string', () => {
75
- placementPropValues.forEach((placement, idx) => {
76
- it(placement, () => {
77
- const mirrored = mirrorHorizontalPlacement(
78
- placement as PlacementPropValues,
79
- ' '
80
- )
81
-
82
- expect(mirrored).toEqual(mirrorHorizontallyAsArrayMap[idx].join(' '))
83
- })
84
- })
85
- })
86
- })
87
-
88
- describe('when array is passed', () => {
89
- describe('without delimiter should return mirrored values as array', () => {
90
- placementPropValues.forEach((placement, idx) => {
91
- it(placement, () => {
92
- const mirrored = mirrorHorizontalPlacement(
93
- placement.split(' ') as PlacementValueArray
94
- )
95
-
96
- expect(mirrored[0]).toEqual(mirrorHorizontallyAsArrayMap[idx][0])
97
- expect(mirrored[1]).toEqual(mirrorHorizontallyAsArrayMap[idx][1])
98
- })
99
- })
100
- })
101
-
102
- describe('with delimiter should return mirrored values as string', () => {
103
- placementPropValues.forEach((placement, idx) => {
104
- it(placement, () => {
105
- const mirrored = mirrorHorizontalPlacement(
106
- placement.split(' ') as PlacementValueArray,
107
- ' '
108
- )
109
-
110
- expect(mirrored).toEqual(mirrorHorizontallyAsArrayMap[idx].join(' '))
111
- })
112
- })
113
- })
114
- })
115
- })
@@ -1,113 +0,0 @@
1
- /*
2
- * The MIT License (MIT)
3
- *
4
- * Copyright (c) 2015 - present Instructure, Inc.
5
- *
6
- * Permission is hereby granted, free of charge, to any person obtaining a copy
7
- * of this software and associated documentation files (the "Software"), to deal
8
- * in the Software without restriction, including without limitation the rights
9
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
- * copies of the Software, and to permit persons to whom the Software is
11
- * furnished to do so, subject to the following conditions:
12
- *
13
- * The above copyright notice and this permission notice shall be included in all
14
- * copies or substantial portions of the Software.
15
- *
16
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
- * SOFTWARE.
23
- */
24
-
25
- import { mirrorPlacement } from '../mirrorPlacement'
26
- import {
27
- PlacementPropValues,
28
- placementPropValues,
29
- PlacementValueArray
30
- } from '../PositionPropTypes'
31
- import '@testing-library/jest-dom'
32
-
33
- const mirrorVertiallyAsArrayMap = [
34
- ['bottom'],
35
- ['top'],
36
- ['end'],
37
- ['start'],
38
- ['bottom', 'start'],
39
- ['bottom', 'center'],
40
- ['bottom', 'end'],
41
- ['bottom', 'stretch'],
42
- ['top', 'start'],
43
- ['top', 'center'],
44
- ['top', 'end'],
45
- ['top', 'stretch'],
46
- ['end', 'top'],
47
- ['end', 'center'],
48
- ['end', 'bottom'],
49
- ['end', 'stretch'],
50
- ['start', 'top'],
51
- ['start', 'center'],
52
- ['start', 'bottom'],
53
- ['start', 'stretch'],
54
- ['center', 'start'],
55
- ['center', 'end'],
56
- ['offscreen']
57
- ]
58
-
59
- describe('mirrorPlacement', () => {
60
- describe('when string is passed', () => {
61
- describe('without delimiter should return mirrored values as array', () => {
62
- placementPropValues.forEach((placement, idx) => {
63
- it(placement, () => {
64
- const mirrored = mirrorPlacement(placement as PlacementPropValues)
65
-
66
- expect(mirrored[0]).toEqual(mirrorVertiallyAsArrayMap[idx][0])
67
- expect(mirrored[1]).toEqual(mirrorVertiallyAsArrayMap[idx][1])
68
- })
69
- })
70
- })
71
-
72
- describe('with delimiter should return mirrored values as string', () => {
73
- placementPropValues.forEach((placement, idx) => {
74
- it(placement, () => {
75
- const mirrored = mirrorPlacement(
76
- placement as PlacementPropValues,
77
- ' '
78
- )
79
-
80
- expect(mirrored).toEqual(mirrorVertiallyAsArrayMap[idx].join(' '))
81
- })
82
- })
83
- })
84
- })
85
-
86
- describe('when array is passed', () => {
87
- describe('without delimiter should return mirrored values as array', () => {
88
- placementPropValues.forEach((placement, idx) => {
89
- it(placement, () => {
90
- const mirrored = mirrorPlacement(
91
- placement.split(' ') as PlacementValueArray
92
- )
93
-
94
- expect(mirrored[0]).toEqual(mirrorVertiallyAsArrayMap[idx][0])
95
- expect(mirrored[1]).toEqual(mirrorVertiallyAsArrayMap[idx][1])
96
- })
97
- })
98
- })
99
-
100
- describe('with delimiter should return mirrored values as string', () => {
101
- placementPropValues.forEach((placement, idx) => {
102
- it(placement, () => {
103
- const mirrored = mirrorPlacement(
104
- placement.split(' ') as PlacementValueArray,
105
- ' '
106
- )
107
-
108
- expect(mirrored).toEqual(mirrorVertiallyAsArrayMap[idx].join(' '))
109
- })
110
- })
111
- })
112
- })
113
- })
@@ -1,310 +0,0 @@
1
- export declare const PositionContentLocator: {
2
- customMethods: Record<string, unknown>;
3
- selector: string;
4
- query: (...args: import("@instructure/ui-test-locator").QueryArguments) => Element;
5
- queryAll: {
6
- (element: Element, selector: string | undefined, options: import("@instructure/ui-test-locator").SelectorOptions): Element[];
7
- displayName: string;
8
- };
9
- findAll: (...args: import("@instructure/ui-test-locator").QueryArguments) => Promise<(import("@instructure/ui-test-locator").QueryTypes & import("@instructure/ui-test-locator").HelperTypes & {
10
- input: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
11
- progress: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
12
- select: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
13
- contextMenu: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
14
- copy: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
15
- cut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
16
- paste: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
17
- compositionEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
18
- compositionStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
19
- compositionUpdate: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
20
- focus: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
21
- focusIn: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
22
- focusOut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
23
- change: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
24
- beforeInput: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
25
- invalid: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
26
- submit: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
27
- click: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
28
- dblClick: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
29
- drag: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
30
- dragEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
31
- dragEnter: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
32
- dragExit: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
33
- dragLeave: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
34
- dragOver: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
35
- dragStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
36
- drop: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
37
- mouseDown: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
38
- mouseEnter: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
39
- mouseLeave: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
40
- mouseMove: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
41
- mouseOut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
42
- mouseOver: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
43
- mouseUp: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
44
- touchCancel: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
45
- touchEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
46
- touchMove: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
47
- touchStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
48
- scroll: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
49
- wheel: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
50
- abort: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
51
- canPlay: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
52
- canPlayThrough: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
53
- durationChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
54
- emptied: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
55
- encrypted: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
56
- ended: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
57
- loadedData: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
58
- loadedMetadata: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
59
- loadStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
60
- pause: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
61
- play: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
62
- playing: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
63
- rateChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
64
- seeked: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
65
- seeking: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
66
- stalled: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
67
- suspend: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
68
- timeUpdate: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
69
- volumeChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
70
- waiting: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
71
- load: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
72
- error: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
73
- animationStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
74
- animationEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
75
- animationIteration: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
76
- transitionEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
77
- } & {
78
- blur: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event | void>;
79
- } & {
80
- keyDown: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
81
- keyPress: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
82
- keyUp: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
83
- } & import("@instructure/ui-test-locator").ObjWithCutFirstArg<Record<string, unknown>>)[]>;
84
- find: (...args: import("@instructure/ui-test-locator").QueryArguments) => Promise<import("@instructure/ui-test-locator").QueryTypes & import("@instructure/ui-test-locator").HelperTypes & {
85
- copy: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
86
- cut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
87
- paste: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
88
- compositionEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
89
- compositionStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
90
- compositionUpdate: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
91
- focus: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
92
- focusIn: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
93
- focusOut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
94
- change: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
95
- beforeInput: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
96
- input: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
97
- invalid: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
98
- submit: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
99
- click: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
100
- contextMenu: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
101
- dblClick: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
102
- drag: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
103
- dragEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
104
- dragEnter: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
105
- dragExit: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
106
- dragLeave: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
107
- dragOver: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
108
- dragStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
109
- drop: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
110
- mouseDown: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
111
- mouseEnter: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
112
- mouseLeave: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
113
- mouseMove: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
114
- mouseOut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
115
- mouseOver: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
116
- mouseUp: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
117
- select: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
118
- touchCancel: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
119
- touchEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
120
- touchMove: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
121
- touchStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
122
- scroll: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
123
- wheel: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
124
- abort: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
125
- canPlay: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
126
- canPlayThrough: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
127
- durationChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
128
- emptied: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
129
- encrypted: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
130
- ended: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
131
- loadedData: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
132
- loadedMetadata: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
133
- loadStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
134
- pause: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
135
- play: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
136
- playing: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
137
- progress: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
138
- rateChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
139
- seeked: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
140
- seeking: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
141
- stalled: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
142
- suspend: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
143
- timeUpdate: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
144
- volumeChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
145
- waiting: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
146
- load: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
147
- error: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
148
- animationStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
149
- animationEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
150
- animationIteration: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
151
- transitionEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
152
- } & {
153
- blur: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event | void>;
154
- } & {
155
- keyDown: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
156
- keyPress: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
157
- keyUp: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
158
- } & import("@instructure/ui-test-locator").ObjWithCutFirstArg<Record<string, unknown>>>;
159
- findWithText: (...args: import("@instructure/ui-test-locator").QueryArguments) => Promise<import("@instructure/ui-test-locator").QueryTypes & import("@instructure/ui-test-locator").HelperTypes & {
160
- copy: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
161
- cut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
162
- paste: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
163
- compositionEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
164
- compositionStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
165
- compositionUpdate: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
166
- focus: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
167
- focusIn: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
168
- focusOut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
169
- change: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
170
- beforeInput: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
171
- input: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
172
- invalid: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
173
- submit: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
174
- click: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
175
- contextMenu: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
176
- dblClick: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
177
- drag: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
178
- dragEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
179
- dragEnter: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
180
- dragExit: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
181
- dragLeave: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
182
- dragOver: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
183
- dragStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
184
- drop: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
185
- mouseDown: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
186
- mouseEnter: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
187
- mouseLeave: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
188
- mouseMove: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
189
- mouseOut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
190
- mouseOver: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
191
- mouseUp: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
192
- select: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
193
- touchCancel: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
194
- touchEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
195
- touchMove: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
196
- touchStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
197
- scroll: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
198
- wheel: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
199
- abort: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
200
- canPlay: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
201
- canPlayThrough: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
202
- durationChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
203
- emptied: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
204
- encrypted: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
205
- ended: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
206
- loadedData: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
207
- loadedMetadata: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
208
- loadStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
209
- pause: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
210
- play: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
211
- playing: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
212
- progress: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
213
- rateChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
214
- seeked: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
215
- seeking: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
216
- stalled: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
217
- suspend: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
218
- timeUpdate: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
219
- volumeChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
220
- waiting: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
221
- load: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
222
- error: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
223
- animationStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
224
- animationEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
225
- animationIteration: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
226
- transitionEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
227
- } & {
228
- blur: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event | void>;
229
- } & {
230
- keyDown: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
231
- keyPress: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
232
- keyUp: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
233
- } & import("@instructure/ui-test-locator").ObjWithCutFirstArg<Record<string, unknown>>>;
234
- findWithLabel: (...args: import("@instructure/ui-test-locator").QueryArguments) => Promise<import("@instructure/ui-test-locator").QueryTypes & import("@instructure/ui-test-locator").HelperTypes & {
235
- copy: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
236
- cut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
237
- paste: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
238
- compositionEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
239
- compositionStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
240
- compositionUpdate: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
241
- focus: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
242
- focusIn: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
243
- focusOut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
244
- change: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
245
- beforeInput: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
246
- input: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
247
- invalid: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
248
- submit: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
249
- click: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
250
- contextMenu: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
251
- dblClick: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
252
- drag: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
253
- dragEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
254
- dragEnter: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
255
- dragExit: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
256
- dragLeave: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
257
- dragOver: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
258
- dragStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
259
- drop: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
260
- mouseDown: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
261
- mouseEnter: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
262
- mouseLeave: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
263
- mouseMove: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
264
- mouseOut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
265
- mouseOver: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
266
- mouseUp: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
267
- select: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
268
- touchCancel: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
269
- touchEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
270
- touchMove: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
271
- touchStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
272
- scroll: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
273
- wheel: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
274
- abort: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
275
- canPlay: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
276
- canPlayThrough: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
277
- durationChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
278
- emptied: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
279
- encrypted: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
280
- ended: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
281
- loadedData: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
282
- loadedMetadata: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
283
- loadStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
284
- pause: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
285
- play: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
286
- playing: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
287
- progress: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
288
- rateChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
289
- seeked: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
290
- seeking: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
291
- stalled: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
292
- suspend: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
293
- timeUpdate: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
294
- volumeChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
295
- waiting: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
296
- load: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
297
- error: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
298
- animationStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
299
- animationEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
300
- animationIteration: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
301
- transitionEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
302
- } & {
303
- blur: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event | void>;
304
- } & {
305
- keyDown: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
306
- keyPress: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
307
- keyUp: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
308
- } & import("@instructure/ui-test-locator").ObjWithCutFirstArg<Record<string, unknown>>>;
309
- } & Record<string, (...args: import("@instructure/ui-test-locator").QueryArguments) => Promise<unknown>>;
310
- //# sourceMappingURL=PositionContentLocator.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"PositionContentLocator.d.ts","sourceRoot":"","sources":["../../src/Position/PositionContentLocator.ts"],"names":[],"mappings":"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"}