@instructure/ui-source-code-editor 10.16.1 → 10.16.3
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 +16 -0
- package/es/SourceCodeEditor/__new-tests__/SourceCodeEditor.test.js +241 -4
- package/lib/SourceCodeEditor/__new-tests__/SourceCodeEditor.test.js +240 -2
- package/package.json +16 -18
- package/src/SourceCodeEditor/__new-tests__/SourceCodeEditor.test.tsx +302 -2
- package/tsconfig.build.json +0 -3
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/SourceCodeEditor/__new-tests__/SourceCodeEditor.test.d.ts.map +1 -1
- package/es/SourceCodeEditor/SourceCodeEditorLocator.js +0 -58
- package/lib/SourceCodeEditor/SourceCodeEditorLocator.js +0 -63
- package/src/SourceCodeEditor/SourceCodeEditorLocator.ts +0 -59
- package/types/SourceCodeEditor/SourceCodeEditorLocator.d.ts +0 -355
- package/types/SourceCodeEditor/SourceCodeEditorLocator.d.ts.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SourceCodeEditor.test.d.ts","sourceRoot":"","sources":["../../../src/SourceCodeEditor/__new-tests__/SourceCodeEditor.test.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"SourceCodeEditor.test.d.ts","sourceRoot":"","sources":["../../../src/SourceCodeEditor/__new-tests__/SourceCodeEditor.test.tsx"],"names":[],"mappings":"AA4BA,OAAO,2BAA2B,CAAA"}
|
|
@@ -1,58 +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 { locator } from '@instructure/ui-test-locator';
|
|
26
|
-
import { find, findAll } from '@instructure/ui-test-queries';
|
|
27
|
-
import { SourceCodeEditor } from './index';
|
|
28
|
-
|
|
29
|
-
// @ts-expect-error ts-migrate(2339) FIXME: Property 'selector' does not exist on type 'typeof... Remove this comment to see the full error message
|
|
30
|
-
export const SourceCodeEditorLocator = locator(SourceCodeEditor.selector, {
|
|
31
|
-
findContainer: async (...args) => {
|
|
32
|
-
return await find('[class$=-codeEditorContainer]', ...args);
|
|
33
|
-
},
|
|
34
|
-
findLabel: async (...args) => {
|
|
35
|
-
return await find('[class$=-screenReaderContent]', ...args);
|
|
36
|
-
},
|
|
37
|
-
findCodeMirrorRoot: async (...args) => {
|
|
38
|
-
return await find('.cm-editor', ...args);
|
|
39
|
-
},
|
|
40
|
-
findInput: async (...args) => {
|
|
41
|
-
return await find('[role="textbox"]', ...args);
|
|
42
|
-
},
|
|
43
|
-
findGutter: async (...args) => {
|
|
44
|
-
return await find('.cm-gutter', ...args);
|
|
45
|
-
},
|
|
46
|
-
findScroller: async (...args) => {
|
|
47
|
-
return await find('.cm-scroller', ...args);
|
|
48
|
-
},
|
|
49
|
-
findAllLines: async (...args) => {
|
|
50
|
-
return await findAll('.cm-line', ...args);
|
|
51
|
-
},
|
|
52
|
-
findAllGutterElements: async (...args) => {
|
|
53
|
-
const allGutterElements = await findAll('.cm-gutterElement', ...args);
|
|
54
|
-
// first gutter element is always a placeholder
|
|
55
|
-
allGutterElements.shift();
|
|
56
|
-
return allGutterElements;
|
|
57
|
-
}
|
|
58
|
-
});
|
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.SourceCodeEditorLocator = void 0;
|
|
7
|
-
var _locator = require("@instructure/ui-test-locator/lib/utils/locator.js");
|
|
8
|
-
var _uiTestQueries = require("@instructure/ui-test-queries");
|
|
9
|
-
var _index = require("./index");
|
|
10
|
-
/*
|
|
11
|
-
* The MIT License (MIT)
|
|
12
|
-
*
|
|
13
|
-
* Copyright (c) 2015 - present Instructure, Inc.
|
|
14
|
-
*
|
|
15
|
-
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
16
|
-
* of this software and associated documentation files (the "Software"), to deal
|
|
17
|
-
* in the Software without restriction, including without limitation the rights
|
|
18
|
-
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
19
|
-
* copies of the Software, and to permit persons to whom the Software is
|
|
20
|
-
* furnished to do so, subject to the following conditions:
|
|
21
|
-
*
|
|
22
|
-
* The above copyright notice and this permission notice shall be included in all
|
|
23
|
-
* copies or substantial portions of the Software.
|
|
24
|
-
*
|
|
25
|
-
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
26
|
-
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
27
|
-
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
28
|
-
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
29
|
-
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
30
|
-
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
31
|
-
* SOFTWARE.
|
|
32
|
-
*/
|
|
33
|
-
|
|
34
|
-
// @ts-expect-error ts-migrate(2339) FIXME: Property 'selector' does not exist on type 'typeof... Remove this comment to see the full error message
|
|
35
|
-
const SourceCodeEditorLocator = exports.SourceCodeEditorLocator = (0, _locator.locator)(_index.SourceCodeEditor.selector, {
|
|
36
|
-
findContainer: async (...args) => {
|
|
37
|
-
return await (0, _uiTestQueries.find)('[class$=-codeEditorContainer]', ...args);
|
|
38
|
-
},
|
|
39
|
-
findLabel: async (...args) => {
|
|
40
|
-
return await (0, _uiTestQueries.find)('[class$=-screenReaderContent]', ...args);
|
|
41
|
-
},
|
|
42
|
-
findCodeMirrorRoot: async (...args) => {
|
|
43
|
-
return await (0, _uiTestQueries.find)('.cm-editor', ...args);
|
|
44
|
-
},
|
|
45
|
-
findInput: async (...args) => {
|
|
46
|
-
return await (0, _uiTestQueries.find)('[role="textbox"]', ...args);
|
|
47
|
-
},
|
|
48
|
-
findGutter: async (...args) => {
|
|
49
|
-
return await (0, _uiTestQueries.find)('.cm-gutter', ...args);
|
|
50
|
-
},
|
|
51
|
-
findScroller: async (...args) => {
|
|
52
|
-
return await (0, _uiTestQueries.find)('.cm-scroller', ...args);
|
|
53
|
-
},
|
|
54
|
-
findAllLines: async (...args) => {
|
|
55
|
-
return await (0, _uiTestQueries.findAll)('.cm-line', ...args);
|
|
56
|
-
},
|
|
57
|
-
findAllGutterElements: async (...args) => {
|
|
58
|
-
const allGutterElements = await (0, _uiTestQueries.findAll)('.cm-gutterElement', ...args);
|
|
59
|
-
// first gutter element is always a placeholder
|
|
60
|
-
allGutterElements.shift();
|
|
61
|
-
return allGutterElements;
|
|
62
|
-
}
|
|
63
|
-
});
|
|
@@ -1,59 +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 { locator } from '@instructure/ui-test-locator'
|
|
26
|
-
import { find, findAll } from '@instructure/ui-test-queries'
|
|
27
|
-
|
|
28
|
-
import { SourceCodeEditor } from './index'
|
|
29
|
-
|
|
30
|
-
// @ts-expect-error ts-migrate(2339) FIXME: Property 'selector' does not exist on type 'typeof... Remove this comment to see the full error message
|
|
31
|
-
export const SourceCodeEditorLocator = locator(SourceCodeEditor.selector, {
|
|
32
|
-
findContainer: async (...args: any[]) => {
|
|
33
|
-
return await find('[class$=-codeEditorContainer]', ...args)
|
|
34
|
-
},
|
|
35
|
-
findLabel: async (...args: any[]) => {
|
|
36
|
-
return await find('[class$=-screenReaderContent]', ...args)
|
|
37
|
-
},
|
|
38
|
-
findCodeMirrorRoot: async (...args: any[]) => {
|
|
39
|
-
return await find('.cm-editor', ...args)
|
|
40
|
-
},
|
|
41
|
-
findInput: async (...args: any[]) => {
|
|
42
|
-
return await find('[role="textbox"]', ...args)
|
|
43
|
-
},
|
|
44
|
-
findGutter: async (...args: any[]) => {
|
|
45
|
-
return await find('.cm-gutter', ...args)
|
|
46
|
-
},
|
|
47
|
-
findScroller: async (...args: any[]) => {
|
|
48
|
-
return await find('.cm-scroller', ...args)
|
|
49
|
-
},
|
|
50
|
-
findAllLines: async (...args: any[]) => {
|
|
51
|
-
return await findAll('.cm-line', ...args)
|
|
52
|
-
},
|
|
53
|
-
findAllGutterElements: async (...args: any[]) => {
|
|
54
|
-
const allGutterElements = await findAll('.cm-gutterElement', ...args)
|
|
55
|
-
// first gutter element is always a placeholder
|
|
56
|
-
allGutterElements.shift()
|
|
57
|
-
return allGutterElements
|
|
58
|
-
}
|
|
59
|
-
})
|
|
@@ -1,355 +0,0 @@
|
|
|
1
|
-
export declare const SourceCodeEditorLocator: {
|
|
2
|
-
customMethods: {
|
|
3
|
-
findContainer: (...args: any[]) => Promise<import("@instructure/ui-test-locator").QueriesHelpersEventsType>;
|
|
4
|
-
findLabel: (...args: any[]) => Promise<import("@instructure/ui-test-locator").QueriesHelpersEventsType>;
|
|
5
|
-
findCodeMirrorRoot: (...args: any[]) => Promise<import("@instructure/ui-test-locator").QueriesHelpersEventsType>;
|
|
6
|
-
findInput: (...args: any[]) => Promise<import("@instructure/ui-test-locator").QueriesHelpersEventsType>;
|
|
7
|
-
findGutter: (...args: any[]) => Promise<import("@instructure/ui-test-locator").QueriesHelpersEventsType>;
|
|
8
|
-
findScroller: (...args: any[]) => Promise<import("@instructure/ui-test-locator").QueriesHelpersEventsType>;
|
|
9
|
-
findAllLines: (...args: any[]) => Promise<import("@instructure/ui-test-locator").QueriesHelpersEventsType[]>;
|
|
10
|
-
findAllGutterElements: (...args: any[]) => Promise<import("@instructure/ui-test-locator").QueriesHelpersEventsType[]>;
|
|
11
|
-
};
|
|
12
|
-
selector: string;
|
|
13
|
-
query: (...args: import("@instructure/ui-test-locator").QueryArguments) => Element;
|
|
14
|
-
queryAll: {
|
|
15
|
-
(element: Element, selector: string | undefined, options: import("@instructure/ui-test-locator").SelectorOptions): Element[];
|
|
16
|
-
displayName: string;
|
|
17
|
-
};
|
|
18
|
-
findAll: (...args: import("@instructure/ui-test-locator").QueryArguments) => Promise<(import("@instructure/ui-test-locator").QueryTypes & import("@instructure/ui-test-locator").HelperTypes & {
|
|
19
|
-
input: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
20
|
-
progress: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
21
|
-
select: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
22
|
-
contextMenu: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
23
|
-
copy: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
24
|
-
error: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
25
|
-
submit: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
26
|
-
focus: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
27
|
-
cut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
28
|
-
paste: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
29
|
-
compositionEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
30
|
-
compositionStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
31
|
-
compositionUpdate: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
32
|
-
focusIn: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
33
|
-
focusOut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
34
|
-
change: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
35
|
-
beforeInput: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
36
|
-
invalid: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
37
|
-
click: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
38
|
-
dblClick: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
39
|
-
drag: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
40
|
-
dragEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
41
|
-
dragEnter: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
42
|
-
dragExit: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
43
|
-
dragLeave: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
44
|
-
dragOver: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
45
|
-
dragStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
46
|
-
drop: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
47
|
-
mouseDown: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
48
|
-
mouseEnter: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
49
|
-
mouseLeave: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
50
|
-
mouseMove: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
51
|
-
mouseOut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
52
|
-
mouseOver: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
53
|
-
mouseUp: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
54
|
-
touchCancel: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
55
|
-
touchEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
56
|
-
touchMove: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
57
|
-
touchStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
58
|
-
scroll: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
59
|
-
wheel: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
60
|
-
abort: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
61
|
-
canPlay: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
62
|
-
canPlayThrough: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
63
|
-
durationChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
64
|
-
emptied: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
65
|
-
encrypted: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
66
|
-
ended: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
67
|
-
loadedData: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
68
|
-
loadedMetadata: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
69
|
-
loadStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
70
|
-
pause: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
71
|
-
play: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
72
|
-
playing: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
73
|
-
rateChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
74
|
-
seeked: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
75
|
-
seeking: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
76
|
-
stalled: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
77
|
-
suspend: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
78
|
-
timeUpdate: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
79
|
-
volumeChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
80
|
-
waiting: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
81
|
-
load: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
82
|
-
animationStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
83
|
-
animationEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
84
|
-
animationIteration: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
85
|
-
transitionEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
86
|
-
} & {
|
|
87
|
-
blur: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event | void>;
|
|
88
|
-
} & {
|
|
89
|
-
keyDown: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
90
|
-
keyPress: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
91
|
-
keyUp: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
92
|
-
} & import("@instructure/ui-test-locator").ObjWithCutFirstArg<{
|
|
93
|
-
findContainer: (...args: any[]) => Promise<import("@instructure/ui-test-locator").QueriesHelpersEventsType>;
|
|
94
|
-
findLabel: (...args: any[]) => Promise<import("@instructure/ui-test-locator").QueriesHelpersEventsType>;
|
|
95
|
-
findCodeMirrorRoot: (...args: any[]) => Promise<import("@instructure/ui-test-locator").QueriesHelpersEventsType>;
|
|
96
|
-
findInput: (...args: any[]) => Promise<import("@instructure/ui-test-locator").QueriesHelpersEventsType>;
|
|
97
|
-
findGutter: (...args: any[]) => Promise<import("@instructure/ui-test-locator").QueriesHelpersEventsType>;
|
|
98
|
-
findScroller: (...args: any[]) => Promise<import("@instructure/ui-test-locator").QueriesHelpersEventsType>;
|
|
99
|
-
findAllLines: (...args: any[]) => Promise<import("@instructure/ui-test-locator").QueriesHelpersEventsType[]>;
|
|
100
|
-
findAllGutterElements: (...args: any[]) => Promise<import("@instructure/ui-test-locator").QueriesHelpersEventsType[]>;
|
|
101
|
-
}>)[]>;
|
|
102
|
-
find: (...args: import("@instructure/ui-test-locator").QueryArguments) => Promise<import("@instructure/ui-test-locator").QueryTypes & import("@instructure/ui-test-locator").HelperTypes & {
|
|
103
|
-
copy: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
104
|
-
cut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
105
|
-
paste: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
106
|
-
compositionEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
107
|
-
compositionStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
108
|
-
compositionUpdate: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
109
|
-
focus: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
110
|
-
focusIn: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
111
|
-
focusOut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
112
|
-
change: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
113
|
-
beforeInput: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
114
|
-
input: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
115
|
-
invalid: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
116
|
-
submit: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
117
|
-
click: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
118
|
-
contextMenu: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
119
|
-
dblClick: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
120
|
-
drag: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
121
|
-
dragEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
122
|
-
dragEnter: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
123
|
-
dragExit: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
124
|
-
dragLeave: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
125
|
-
dragOver: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
126
|
-
dragStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
127
|
-
drop: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
128
|
-
mouseDown: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
129
|
-
mouseEnter: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
130
|
-
mouseLeave: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
131
|
-
mouseMove: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
132
|
-
mouseOut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
133
|
-
mouseOver: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
134
|
-
mouseUp: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
135
|
-
select: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
136
|
-
touchCancel: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
137
|
-
touchEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
138
|
-
touchMove: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
139
|
-
touchStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
140
|
-
scroll: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
141
|
-
wheel: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
142
|
-
abort: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
143
|
-
canPlay: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
144
|
-
canPlayThrough: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
145
|
-
durationChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
146
|
-
emptied: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
147
|
-
encrypted: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
148
|
-
ended: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
149
|
-
loadedData: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
150
|
-
loadedMetadata: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
151
|
-
loadStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
152
|
-
pause: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
153
|
-
play: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
154
|
-
playing: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
155
|
-
progress: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
156
|
-
rateChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
157
|
-
seeked: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
158
|
-
seeking: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
159
|
-
stalled: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
160
|
-
suspend: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
161
|
-
timeUpdate: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
162
|
-
volumeChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
163
|
-
waiting: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
164
|
-
load: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
165
|
-
error: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
166
|
-
animationStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
167
|
-
animationEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
168
|
-
animationIteration: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
169
|
-
transitionEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
170
|
-
} & {
|
|
171
|
-
blur: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event | void>;
|
|
172
|
-
} & {
|
|
173
|
-
keyDown: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
174
|
-
keyPress: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
175
|
-
keyUp: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
176
|
-
} & import("@instructure/ui-test-locator").ObjWithCutFirstArg<{
|
|
177
|
-
findContainer: (...args: any[]) => Promise<import("@instructure/ui-test-locator").QueriesHelpersEventsType>;
|
|
178
|
-
findLabel: (...args: any[]) => Promise<import("@instructure/ui-test-locator").QueriesHelpersEventsType>;
|
|
179
|
-
findCodeMirrorRoot: (...args: any[]) => Promise<import("@instructure/ui-test-locator").QueriesHelpersEventsType>;
|
|
180
|
-
findInput: (...args: any[]) => Promise<import("@instructure/ui-test-locator").QueriesHelpersEventsType>;
|
|
181
|
-
findGutter: (...args: any[]) => Promise<import("@instructure/ui-test-locator").QueriesHelpersEventsType>;
|
|
182
|
-
findScroller: (...args: any[]) => Promise<import("@instructure/ui-test-locator").QueriesHelpersEventsType>;
|
|
183
|
-
findAllLines: (...args: any[]) => Promise<import("@instructure/ui-test-locator").QueriesHelpersEventsType[]>;
|
|
184
|
-
findAllGutterElements: (...args: any[]) => Promise<import("@instructure/ui-test-locator").QueriesHelpersEventsType[]>;
|
|
185
|
-
}>>;
|
|
186
|
-
findWithText: (...args: import("@instructure/ui-test-locator").QueryArguments) => Promise<import("@instructure/ui-test-locator").QueryTypes & import("@instructure/ui-test-locator").HelperTypes & {
|
|
187
|
-
copy: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
188
|
-
cut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
189
|
-
paste: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
190
|
-
compositionEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
191
|
-
compositionStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
192
|
-
compositionUpdate: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
193
|
-
focus: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
194
|
-
focusIn: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
195
|
-
focusOut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
196
|
-
change: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
197
|
-
beforeInput: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
198
|
-
input: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
199
|
-
invalid: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
200
|
-
submit: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
201
|
-
click: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
202
|
-
contextMenu: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
203
|
-
dblClick: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
204
|
-
drag: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
205
|
-
dragEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
206
|
-
dragEnter: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
207
|
-
dragExit: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
208
|
-
dragLeave: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
209
|
-
dragOver: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
210
|
-
dragStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
211
|
-
drop: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
212
|
-
mouseDown: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
213
|
-
mouseEnter: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
214
|
-
mouseLeave: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
215
|
-
mouseMove: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
216
|
-
mouseOut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
217
|
-
mouseOver: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
218
|
-
mouseUp: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
219
|
-
select: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
220
|
-
touchCancel: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
221
|
-
touchEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
222
|
-
touchMove: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
223
|
-
touchStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
224
|
-
scroll: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
225
|
-
wheel: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
226
|
-
abort: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
227
|
-
canPlay: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
228
|
-
canPlayThrough: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
229
|
-
durationChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
230
|
-
emptied: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
231
|
-
encrypted: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
232
|
-
ended: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
233
|
-
loadedData: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
234
|
-
loadedMetadata: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
235
|
-
loadStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
236
|
-
pause: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
237
|
-
play: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
238
|
-
playing: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
239
|
-
progress: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
240
|
-
rateChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
241
|
-
seeked: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
242
|
-
seeking: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
243
|
-
stalled: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
244
|
-
suspend: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
245
|
-
timeUpdate: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
246
|
-
volumeChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
247
|
-
waiting: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
248
|
-
load: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
249
|
-
error: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
250
|
-
animationStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
251
|
-
animationEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
252
|
-
animationIteration: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
253
|
-
transitionEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
254
|
-
} & {
|
|
255
|
-
blur: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event | void>;
|
|
256
|
-
} & {
|
|
257
|
-
keyDown: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
258
|
-
keyPress: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
259
|
-
keyUp: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
260
|
-
} & import("@instructure/ui-test-locator").ObjWithCutFirstArg<{
|
|
261
|
-
findContainer: (...args: any[]) => Promise<import("@instructure/ui-test-locator").QueriesHelpersEventsType>;
|
|
262
|
-
findLabel: (...args: any[]) => Promise<import("@instructure/ui-test-locator").QueriesHelpersEventsType>;
|
|
263
|
-
findCodeMirrorRoot: (...args: any[]) => Promise<import("@instructure/ui-test-locator").QueriesHelpersEventsType>;
|
|
264
|
-
findInput: (...args: any[]) => Promise<import("@instructure/ui-test-locator").QueriesHelpersEventsType>;
|
|
265
|
-
findGutter: (...args: any[]) => Promise<import("@instructure/ui-test-locator").QueriesHelpersEventsType>;
|
|
266
|
-
findScroller: (...args: any[]) => Promise<import("@instructure/ui-test-locator").QueriesHelpersEventsType>;
|
|
267
|
-
findAllLines: (...args: any[]) => Promise<import("@instructure/ui-test-locator").QueriesHelpersEventsType[]>;
|
|
268
|
-
findAllGutterElements: (...args: any[]) => Promise<import("@instructure/ui-test-locator").QueriesHelpersEventsType[]>;
|
|
269
|
-
}>>;
|
|
270
|
-
findWithLabel: (...args: import("@instructure/ui-test-locator").QueryArguments) => Promise<import("@instructure/ui-test-locator").QueryTypes & import("@instructure/ui-test-locator").HelperTypes & {
|
|
271
|
-
copy: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
272
|
-
cut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
273
|
-
paste: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
274
|
-
compositionEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
275
|
-
compositionStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
276
|
-
compositionUpdate: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
277
|
-
focus: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
278
|
-
focusIn: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
279
|
-
focusOut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
280
|
-
change: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
281
|
-
beforeInput: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
282
|
-
input: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
283
|
-
invalid: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
284
|
-
submit: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
285
|
-
click: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
286
|
-
contextMenu: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
287
|
-
dblClick: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
288
|
-
drag: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
289
|
-
dragEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
290
|
-
dragEnter: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
291
|
-
dragExit: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
292
|
-
dragLeave: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
293
|
-
dragOver: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
294
|
-
dragStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
295
|
-
drop: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
296
|
-
mouseDown: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
297
|
-
mouseEnter: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
298
|
-
mouseLeave: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
299
|
-
mouseMove: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
300
|
-
mouseOut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
301
|
-
mouseOver: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
302
|
-
mouseUp: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
303
|
-
select: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
304
|
-
touchCancel: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
305
|
-
touchEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
306
|
-
touchMove: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
307
|
-
touchStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
308
|
-
scroll: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
309
|
-
wheel: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
310
|
-
abort: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
311
|
-
canPlay: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
312
|
-
canPlayThrough: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
313
|
-
durationChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
314
|
-
emptied: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
315
|
-
encrypted: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
316
|
-
ended: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
317
|
-
loadedData: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
318
|
-
loadedMetadata: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
319
|
-
loadStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
320
|
-
pause: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
321
|
-
play: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
322
|
-
playing: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
323
|
-
progress: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
324
|
-
rateChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
325
|
-
seeked: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
326
|
-
seeking: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
327
|
-
stalled: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
328
|
-
suspend: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
329
|
-
timeUpdate: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
330
|
-
volumeChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
331
|
-
waiting: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
332
|
-
load: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
333
|
-
error: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
334
|
-
animationStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
335
|
-
animationEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
336
|
-
animationIteration: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
337
|
-
transitionEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
338
|
-
} & {
|
|
339
|
-
blur: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event | void>;
|
|
340
|
-
} & {
|
|
341
|
-
keyDown: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
342
|
-
keyPress: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
343
|
-
keyUp: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
344
|
-
} & import("@instructure/ui-test-locator").ObjWithCutFirstArg<{
|
|
345
|
-
findContainer: (...args: any[]) => Promise<import("@instructure/ui-test-locator").QueriesHelpersEventsType>;
|
|
346
|
-
findLabel: (...args: any[]) => Promise<import("@instructure/ui-test-locator").QueriesHelpersEventsType>;
|
|
347
|
-
findCodeMirrorRoot: (...args: any[]) => Promise<import("@instructure/ui-test-locator").QueriesHelpersEventsType>;
|
|
348
|
-
findInput: (...args: any[]) => Promise<import("@instructure/ui-test-locator").QueriesHelpersEventsType>;
|
|
349
|
-
findGutter: (...args: any[]) => Promise<import("@instructure/ui-test-locator").QueriesHelpersEventsType>;
|
|
350
|
-
findScroller: (...args: any[]) => Promise<import("@instructure/ui-test-locator").QueriesHelpersEventsType>;
|
|
351
|
-
findAllLines: (...args: any[]) => Promise<import("@instructure/ui-test-locator").QueriesHelpersEventsType[]>;
|
|
352
|
-
findAllGutterElements: (...args: any[]) => Promise<import("@instructure/ui-test-locator").QueriesHelpersEventsType[]>;
|
|
353
|
-
}>>;
|
|
354
|
-
} & Record<"findContainer" | "findLabel" | "findCodeMirrorRoot" | "findInput" | "findGutter" | "findScroller" | "findAllLines" | "findAllGutterElements", (...args: import("@instructure/ui-test-locator").QueryArguments) => Promise<unknown>>;
|
|
355
|
-
//# sourceMappingURL=SourceCodeEditorLocator.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"SourceCodeEditorLocator.d.ts","sourceRoot":"","sources":["../../src/SourceCodeEditor/SourceCodeEditorLocator.ts"],"names":[],"mappings":"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"}
|