@instructure/ui-time-select 10.2.2-snapshot-14 → 10.2.2-snapshot-16
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 +1 -1
- package/es/TimeSelect/__new-tests__/TimeSelect.test.js +265 -0
- package/lib/TimeSelect/__new-tests__/TimeSelect.test.js +267 -0
- package/package.json +18 -14
- package/src/TimeSelect/__new-tests__/TimeSelect.test.tsx +341 -0
- package/tsconfig.build.json +2 -2
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/TimeSelect/__new-tests__/TimeSelect.test.d.ts +2 -0
- package/types/TimeSelect/__new-tests__/TimeSelect.test.d.ts.map +1 -0
- package/es/TimeSelect/TimeSelectLocator.js +0 -38
- package/lib/TimeSelect/TimeSelectLocator.js +0 -44
- package/src/TimeSelect/TimeSelectLocator.ts +0 -39
- package/types/TimeSelect/TimeSelectLocator.d.ts +0 -443
- package/types/TimeSelect/TimeSelectLocator.d.ts.map +0 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TimeSelect.test.d.ts","sourceRoot":"","sources":["../../../src/TimeSelect/__new-tests__/TimeSelect.test.tsx"],"names":[],"mappings":"AA4BA,OAAO,2BAA2B,CAAA"}
|
|
@@ -1,38 +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
|
-
import { locator } from '@instructure/ui-test-locator';
|
|
25
|
-
|
|
26
|
-
/* eslint-disable no-restricted-imports */
|
|
27
|
-
// @ts-ignore: Cannot find module
|
|
28
|
-
import { SelectLocator } from '@instructure/ui-select/es/Select/SelectLocator';
|
|
29
|
-
/* eslint-enable no-restricted-imports */
|
|
30
|
-
|
|
31
|
-
import { TimeSelect } from './index';
|
|
32
|
-
|
|
33
|
-
// @ts-expect-error ts-migrate(2339) FIXME: Property 'selector' does not exist on type 'typeof... Remove this comment to see the full error message
|
|
34
|
-
export const TimeSelectLocator = locator(TimeSelect.selector, {
|
|
35
|
-
findInput: SelectLocator.findInput,
|
|
36
|
-
// TODO these dont work because TS doesnt find its type declarations
|
|
37
|
-
findOptionsList: SelectLocator.findOptionsList
|
|
38
|
-
});
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.TimeSelectLocator = void 0;
|
|
7
|
-
var _locator = require("@instructure/ui-test-locator/lib/utils/locator.js");
|
|
8
|
-
var _SelectLocator = require("@instructure/ui-select/lib/Select/SelectLocator");
|
|
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
|
-
/* eslint-disable no-restricted-imports */
|
|
35
|
-
// @ts-ignore: Cannot find module
|
|
36
|
-
|
|
37
|
-
/* eslint-enable no-restricted-imports */
|
|
38
|
-
|
|
39
|
-
// @ts-expect-error ts-migrate(2339) FIXME: Property 'selector' does not exist on type 'typeof... Remove this comment to see the full error message
|
|
40
|
-
const TimeSelectLocator = exports.TimeSelectLocator = (0, _locator.locator)(_index.TimeSelect.selector, {
|
|
41
|
-
findInput: _SelectLocator.SelectLocator.findInput,
|
|
42
|
-
// TODO these dont work because TS doesnt find its type declarations
|
|
43
|
-
findOptionsList: _SelectLocator.SelectLocator.findOptionsList
|
|
44
|
-
});
|
|
@@ -1,39 +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
|
-
import { locator } from '@instructure/ui-test-locator'
|
|
25
|
-
|
|
26
|
-
/* eslint-disable no-restricted-imports */
|
|
27
|
-
// @ts-ignore: Cannot find module
|
|
28
|
-
import { SelectLocator } from '@instructure/ui-select/es/Select/SelectLocator'
|
|
29
|
-
/* eslint-enable no-restricted-imports */
|
|
30
|
-
|
|
31
|
-
import { TimeSelect } from './index'
|
|
32
|
-
|
|
33
|
-
// @ts-expect-error ts-migrate(2339) FIXME: Property 'selector' does not exist on type 'typeof... Remove this comment to see the full error message
|
|
34
|
-
export const TimeSelectLocator = locator(TimeSelect.selector, {
|
|
35
|
-
findInput: SelectLocator.findInput as (...args: any) => Promise<any>, // TODO these dont work because TS doesnt find its type declarations
|
|
36
|
-
findOptionsList: SelectLocator.findOptionsList as (
|
|
37
|
-
...args: any
|
|
38
|
-
) => Promise<any>
|
|
39
|
-
})
|
|
@@ -1,443 +0,0 @@
|
|
|
1
|
-
export declare const TimeSelectLocator: {
|
|
2
|
-
customMethods: {
|
|
3
|
-
findInput: (...args: any) => Promise<any>;
|
|
4
|
-
findOptionsList: (...args: any) => Promise<any>;
|
|
5
|
-
};
|
|
6
|
-
selector: string;
|
|
7
|
-
query: (...args: import("@instructure/ui-test-queries/src/utils/parseQueryArguments").QueryArguments) => Element;
|
|
8
|
-
queryAll: {
|
|
9
|
-
(element: Element, selector: string | undefined, options: import("@instructure/ui-test-queries/src/utils/selectors").SelectorOptions): Element[];
|
|
10
|
-
displayName: string;
|
|
11
|
-
};
|
|
12
|
-
findAll: (...args: import("@instructure/ui-test-queries/src/utils/parseQueryArguments").QueryArguments) => Promise<(import("@instructure/ui-test-queries").QueriesHelpersEventsType & import("@instructure/ui-test-queries/src/utils/bindElementToMethods").ObjWithCutFirstArg<{
|
|
13
|
-
findInput: (...args: any) => Promise<any>;
|
|
14
|
-
findOptionsList: (...args: any) => Promise<any>;
|
|
15
|
-
}>)[]>;
|
|
16
|
-
find: (...args: import("@instructure/ui-test-queries/src/utils/parseQueryArguments").QueryArguments) => Promise<{
|
|
17
|
-
findWithLabel: typeof import("@instructure/ui-test-queries").findWithLabel;
|
|
18
|
-
findWithText: typeof import("@instructure/ui-test-queries").findWithText;
|
|
19
|
-
findWithTitle: typeof import("@instructure/ui-test-queries").findWithTitle;
|
|
20
|
-
findAllByQuery: typeof import("@instructure/ui-test-queries").findAllByQuery;
|
|
21
|
-
findByQuery: typeof import("@instructure/ui-test-queries").findByQuery;
|
|
22
|
-
findAll: typeof import("@instructure/ui-test-queries").findAll;
|
|
23
|
-
find: typeof import("@instructure/ui-test-queries").find;
|
|
24
|
-
findAllFrames: typeof import("@instructure/ui-test-queries").findAllFrames;
|
|
25
|
-
findFrame: typeof import("@instructure/ui-test-queries").findFrame;
|
|
26
|
-
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
27
|
-
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
28
|
-
} & {
|
|
29
|
-
visible: () => boolean;
|
|
30
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
31
|
-
highlight: boolean;
|
|
32
|
-
} | undefined) => string;
|
|
33
|
-
getId: () => string;
|
|
34
|
-
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
35
|
-
getOwnerDocument: () => Document;
|
|
36
|
-
getComputedStyle: () => CSSStyleDeclaration;
|
|
37
|
-
getTagName: () => string;
|
|
38
|
-
tagName: () => string;
|
|
39
|
-
typeIn: (text: string) => Promise<void>;
|
|
40
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
41
|
-
getDOMNode: () => Element;
|
|
42
|
-
node: () => Element;
|
|
43
|
-
debug: (maxLength?: number | undefined, options?: {
|
|
44
|
-
highlight: boolean;
|
|
45
|
-
} | undefined) => void;
|
|
46
|
-
accessible: (options?: import("@instructure/ui-axe-check").AxeCheckOptions | undefined) => Promise<true | Error>;
|
|
47
|
-
getTextContent: () => string | null;
|
|
48
|
-
getParentNode: () => ParentNode | null;
|
|
49
|
-
parent: () => ParentNode | null;
|
|
50
|
-
getBoundingClientRect: () => DOMRect;
|
|
51
|
-
rect: () => DOMRect;
|
|
52
|
-
hasClass: (classname: string) => boolean;
|
|
53
|
-
containsFocus: () => boolean;
|
|
54
|
-
focused: () => boolean;
|
|
55
|
-
focusable: () => boolean;
|
|
56
|
-
tabbable: () => boolean;
|
|
57
|
-
clickable: () => boolean;
|
|
58
|
-
onscreen: () => boolean;
|
|
59
|
-
exists: () => boolean;
|
|
60
|
-
text: () => string | null;
|
|
61
|
-
empty: () => boolean;
|
|
62
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
63
|
-
descendants: (selector: string) => Element[];
|
|
64
|
-
ancestors: (selector: string) => ParentNode[];
|
|
65
|
-
attribute: (qualifiedName: string) => string | null;
|
|
66
|
-
style: (property: string) => string;
|
|
67
|
-
classNames: () => string[];
|
|
68
|
-
id: () => string;
|
|
69
|
-
matches: (selector: string | undefined) => boolean;
|
|
70
|
-
checked: () => any;
|
|
71
|
-
selected: () => any;
|
|
72
|
-
disabled: () => string | null;
|
|
73
|
-
readonly: () => any;
|
|
74
|
-
role: () => string | null;
|
|
75
|
-
value: () => string | null;
|
|
76
|
-
label: () => string | null | undefined;
|
|
77
|
-
title: () => string | null | undefined;
|
|
78
|
-
children: (selector: string) => Element[];
|
|
79
|
-
parents: (selector: string) => ParentNode[];
|
|
80
|
-
} & {
|
|
81
|
-
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
82
|
-
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
83
|
-
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
84
|
-
compositionEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
85
|
-
compositionStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
86
|
-
compositionUpdate: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
87
|
-
focus: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
88
|
-
focusIn: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
89
|
-
focusOut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
90
|
-
change: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
91
|
-
beforeInput: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
92
|
-
input: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
93
|
-
invalid: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
94
|
-
submit: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
95
|
-
click: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
96
|
-
contextMenu: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
97
|
-
dblClick: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
98
|
-
drag: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
99
|
-
dragEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
100
|
-
dragEnter: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
101
|
-
dragExit: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
102
|
-
dragLeave: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
103
|
-
dragOver: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
104
|
-
dragStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
105
|
-
drop: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
106
|
-
mouseDown: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
107
|
-
mouseEnter: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
108
|
-
mouseLeave: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
109
|
-
mouseMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
110
|
-
mouseOut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
111
|
-
mouseOver: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
112
|
-
mouseUp: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
113
|
-
select: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
114
|
-
touchCancel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
115
|
-
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
116
|
-
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
117
|
-
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
118
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
119
|
-
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
120
|
-
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
121
|
-
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
122
|
-
canPlayThrough: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
123
|
-
durationChange: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
124
|
-
emptied: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
125
|
-
encrypted: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
126
|
-
ended: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
127
|
-
loadedData: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
128
|
-
loadedMetadata: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
129
|
-
loadStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
130
|
-
pause: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
131
|
-
play: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
132
|
-
playing: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
133
|
-
progress: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
134
|
-
rateChange: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
135
|
-
seeked: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
136
|
-
seeking: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
137
|
-
stalled: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
138
|
-
suspend: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
139
|
-
timeUpdate: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
140
|
-
volumeChange: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
141
|
-
waiting: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
142
|
-
load: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
143
|
-
error: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
144
|
-
animationStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
145
|
-
animationEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
146
|
-
animationIteration: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
147
|
-
transitionEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
148
|
-
} & {
|
|
149
|
-
blur: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event | void>;
|
|
150
|
-
} & {
|
|
151
|
-
keyDown: (whichKey?: string | number, init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
152
|
-
keyPress: (whichKey?: string | number, init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
153
|
-
keyUp: (whichKey?: string | number, init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
154
|
-
} & import("@instructure/ui-test-queries/src/utils/bindElementToMethods").ObjWithCutFirstArg<{
|
|
155
|
-
findInput: (...args: any) => Promise<any>;
|
|
156
|
-
findOptionsList: (...args: any) => Promise<any>;
|
|
157
|
-
}>>;
|
|
158
|
-
findWithText: (...args: import("@instructure/ui-test-queries/src/utils/parseQueryArguments").QueryArguments) => Promise<{
|
|
159
|
-
findWithLabel: typeof import("@instructure/ui-test-queries").findWithLabel;
|
|
160
|
-
findWithText: typeof import("@instructure/ui-test-queries").findWithText;
|
|
161
|
-
findWithTitle: typeof import("@instructure/ui-test-queries").findWithTitle;
|
|
162
|
-
findAllByQuery: typeof import("@instructure/ui-test-queries").findAllByQuery;
|
|
163
|
-
findByQuery: typeof import("@instructure/ui-test-queries").findByQuery;
|
|
164
|
-
findAll: typeof import("@instructure/ui-test-queries").findAll;
|
|
165
|
-
find: typeof import("@instructure/ui-test-queries").find;
|
|
166
|
-
findAllFrames: typeof import("@instructure/ui-test-queries").findAllFrames;
|
|
167
|
-
findFrame: typeof import("@instructure/ui-test-queries").findFrame;
|
|
168
|
-
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
169
|
-
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
170
|
-
} & {
|
|
171
|
-
visible: () => boolean;
|
|
172
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
173
|
-
highlight: boolean;
|
|
174
|
-
} | undefined) => string;
|
|
175
|
-
getId: () => string;
|
|
176
|
-
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
177
|
-
getOwnerDocument: () => Document;
|
|
178
|
-
getComputedStyle: () => CSSStyleDeclaration;
|
|
179
|
-
getTagName: () => string;
|
|
180
|
-
tagName: () => string;
|
|
181
|
-
typeIn: (text: string) => Promise<void>;
|
|
182
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
183
|
-
getDOMNode: () => Element;
|
|
184
|
-
node: () => Element;
|
|
185
|
-
debug: (maxLength?: number | undefined, options?: {
|
|
186
|
-
highlight: boolean;
|
|
187
|
-
} | undefined) => void;
|
|
188
|
-
accessible: (options?: import("@instructure/ui-axe-check").AxeCheckOptions | undefined) => Promise<true | Error>;
|
|
189
|
-
getTextContent: () => string | null;
|
|
190
|
-
getParentNode: () => ParentNode | null;
|
|
191
|
-
parent: () => ParentNode | null;
|
|
192
|
-
getBoundingClientRect: () => DOMRect;
|
|
193
|
-
rect: () => DOMRect;
|
|
194
|
-
hasClass: (classname: string) => boolean;
|
|
195
|
-
containsFocus: () => boolean;
|
|
196
|
-
focused: () => boolean;
|
|
197
|
-
focusable: () => boolean;
|
|
198
|
-
tabbable: () => boolean;
|
|
199
|
-
clickable: () => boolean;
|
|
200
|
-
onscreen: () => boolean;
|
|
201
|
-
exists: () => boolean;
|
|
202
|
-
text: () => string | null;
|
|
203
|
-
empty: () => boolean;
|
|
204
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
205
|
-
descendants: (selector: string) => Element[];
|
|
206
|
-
ancestors: (selector: string) => ParentNode[];
|
|
207
|
-
attribute: (qualifiedName: string) => string | null;
|
|
208
|
-
style: (property: string) => string;
|
|
209
|
-
classNames: () => string[];
|
|
210
|
-
id: () => string;
|
|
211
|
-
matches: (selector: string | undefined) => boolean;
|
|
212
|
-
checked: () => any;
|
|
213
|
-
selected: () => any;
|
|
214
|
-
disabled: () => string | null;
|
|
215
|
-
readonly: () => any;
|
|
216
|
-
role: () => string | null;
|
|
217
|
-
value: () => string | null;
|
|
218
|
-
label: () => string | null | undefined;
|
|
219
|
-
title: () => string | null | undefined;
|
|
220
|
-
children: (selector: string) => Element[];
|
|
221
|
-
parents: (selector: string) => ParentNode[];
|
|
222
|
-
} & {
|
|
223
|
-
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
224
|
-
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
225
|
-
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
226
|
-
compositionEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
227
|
-
compositionStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
228
|
-
compositionUpdate: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
229
|
-
focus: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
230
|
-
focusIn: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
231
|
-
focusOut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
232
|
-
change: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
233
|
-
beforeInput: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
234
|
-
input: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
235
|
-
invalid: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
236
|
-
submit: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
237
|
-
click: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
238
|
-
contextMenu: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
239
|
-
dblClick: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
240
|
-
drag: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
241
|
-
dragEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
242
|
-
dragEnter: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
243
|
-
dragExit: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
244
|
-
dragLeave: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
245
|
-
dragOver: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
246
|
-
dragStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
247
|
-
drop: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
248
|
-
mouseDown: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
249
|
-
mouseEnter: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
250
|
-
mouseLeave: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
251
|
-
mouseMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
252
|
-
mouseOut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
253
|
-
mouseOver: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
254
|
-
mouseUp: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
255
|
-
select: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
256
|
-
touchCancel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
257
|
-
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
258
|
-
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
259
|
-
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
260
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
261
|
-
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
262
|
-
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
263
|
-
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
264
|
-
canPlayThrough: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
265
|
-
durationChange: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
266
|
-
emptied: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
267
|
-
encrypted: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
268
|
-
ended: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
269
|
-
loadedData: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
270
|
-
loadedMetadata: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
271
|
-
loadStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
272
|
-
pause: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
273
|
-
play: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
274
|
-
playing: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
275
|
-
progress: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
276
|
-
rateChange: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
277
|
-
seeked: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
278
|
-
seeking: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
279
|
-
stalled: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
280
|
-
suspend: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
281
|
-
timeUpdate: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
282
|
-
volumeChange: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
283
|
-
waiting: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
284
|
-
load: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
285
|
-
error: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
286
|
-
animationStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
287
|
-
animationEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
288
|
-
animationIteration: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
289
|
-
transitionEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
290
|
-
} & {
|
|
291
|
-
blur: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event | void>;
|
|
292
|
-
} & {
|
|
293
|
-
keyDown: (whichKey?: string | number, init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
294
|
-
keyPress: (whichKey?: string | number, init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
295
|
-
keyUp: (whichKey?: string | number, init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
296
|
-
} & import("@instructure/ui-test-queries/src/utils/bindElementToMethods").ObjWithCutFirstArg<{
|
|
297
|
-
findInput: (...args: any) => Promise<any>;
|
|
298
|
-
findOptionsList: (...args: any) => Promise<any>;
|
|
299
|
-
}>>;
|
|
300
|
-
findWithLabel: (...args: import("@instructure/ui-test-queries/src/utils/parseQueryArguments").QueryArguments) => Promise<{
|
|
301
|
-
findWithLabel: typeof import("@instructure/ui-test-queries").findWithLabel;
|
|
302
|
-
findWithText: typeof import("@instructure/ui-test-queries").findWithText;
|
|
303
|
-
findWithTitle: typeof import("@instructure/ui-test-queries").findWithTitle;
|
|
304
|
-
findAllByQuery: typeof import("@instructure/ui-test-queries").findAllByQuery;
|
|
305
|
-
findByQuery: typeof import("@instructure/ui-test-queries").findByQuery;
|
|
306
|
-
findAll: typeof import("@instructure/ui-test-queries").findAll;
|
|
307
|
-
find: typeof import("@instructure/ui-test-queries").find;
|
|
308
|
-
findAllFrames: typeof import("@instructure/ui-test-queries").findAllFrames;
|
|
309
|
-
findFrame: typeof import("@instructure/ui-test-queries").findFrame;
|
|
310
|
-
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
311
|
-
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
312
|
-
} & {
|
|
313
|
-
visible: () => boolean;
|
|
314
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
315
|
-
highlight: boolean;
|
|
316
|
-
} | undefined) => string;
|
|
317
|
-
getId: () => string;
|
|
318
|
-
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
319
|
-
getOwnerDocument: () => Document;
|
|
320
|
-
getComputedStyle: () => CSSStyleDeclaration;
|
|
321
|
-
getTagName: () => string;
|
|
322
|
-
tagName: () => string;
|
|
323
|
-
typeIn: (text: string) => Promise<void>;
|
|
324
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
325
|
-
getDOMNode: () => Element;
|
|
326
|
-
node: () => Element;
|
|
327
|
-
debug: (maxLength?: number | undefined, options?: {
|
|
328
|
-
highlight: boolean;
|
|
329
|
-
} | undefined) => void;
|
|
330
|
-
accessible: (options?: import("@instructure/ui-axe-check").AxeCheckOptions | undefined) => Promise<true | Error>;
|
|
331
|
-
getTextContent: () => string | null;
|
|
332
|
-
getParentNode: () => ParentNode | null;
|
|
333
|
-
parent: () => ParentNode | null;
|
|
334
|
-
getBoundingClientRect: () => DOMRect;
|
|
335
|
-
rect: () => DOMRect;
|
|
336
|
-
hasClass: (classname: string) => boolean;
|
|
337
|
-
containsFocus: () => boolean;
|
|
338
|
-
focused: () => boolean;
|
|
339
|
-
focusable: () => boolean;
|
|
340
|
-
tabbable: () => boolean;
|
|
341
|
-
clickable: () => boolean;
|
|
342
|
-
onscreen: () => boolean;
|
|
343
|
-
exists: () => boolean;
|
|
344
|
-
text: () => string | null;
|
|
345
|
-
empty: () => boolean;
|
|
346
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
347
|
-
descendants: (selector: string) => Element[];
|
|
348
|
-
ancestors: (selector: string) => ParentNode[];
|
|
349
|
-
attribute: (qualifiedName: string) => string | null;
|
|
350
|
-
style: (property: string) => string;
|
|
351
|
-
classNames: () => string[];
|
|
352
|
-
id: () => string;
|
|
353
|
-
matches: (selector: string | undefined) => boolean;
|
|
354
|
-
checked: () => any;
|
|
355
|
-
selected: () => any;
|
|
356
|
-
disabled: () => string | null;
|
|
357
|
-
readonly: () => any;
|
|
358
|
-
role: () => string | null;
|
|
359
|
-
value: () => string | null;
|
|
360
|
-
label: () => string | null | undefined;
|
|
361
|
-
title: () => string | null | undefined;
|
|
362
|
-
children: (selector: string) => Element[];
|
|
363
|
-
parents: (selector: string) => ParentNode[];
|
|
364
|
-
} & {
|
|
365
|
-
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
366
|
-
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
367
|
-
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
368
|
-
compositionEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
369
|
-
compositionStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
370
|
-
compositionUpdate: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
371
|
-
focus: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
372
|
-
focusIn: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
373
|
-
focusOut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
374
|
-
change: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
375
|
-
beforeInput: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
376
|
-
input: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
377
|
-
invalid: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
378
|
-
submit: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
379
|
-
click: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
380
|
-
contextMenu: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
381
|
-
dblClick: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
382
|
-
drag: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
383
|
-
dragEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
384
|
-
dragEnter: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
385
|
-
dragExit: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
386
|
-
dragLeave: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
387
|
-
dragOver: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
388
|
-
dragStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
389
|
-
drop: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
390
|
-
mouseDown: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
391
|
-
mouseEnter: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
392
|
-
mouseLeave: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
393
|
-
mouseMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
394
|
-
mouseOut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
395
|
-
mouseOver: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
396
|
-
mouseUp: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
397
|
-
select: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
398
|
-
touchCancel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
399
|
-
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
400
|
-
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
401
|
-
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
402
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
403
|
-
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
404
|
-
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
405
|
-
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
406
|
-
canPlayThrough: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
407
|
-
durationChange: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
408
|
-
emptied: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
409
|
-
encrypted: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
410
|
-
ended: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
411
|
-
loadedData: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
412
|
-
loadedMetadata: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
413
|
-
loadStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
414
|
-
pause: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
415
|
-
play: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
416
|
-
playing: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
417
|
-
progress: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
418
|
-
rateChange: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
419
|
-
seeked: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
420
|
-
seeking: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
421
|
-
stalled: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
422
|
-
suspend: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
423
|
-
timeUpdate: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
424
|
-
volumeChange: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
425
|
-
waiting: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
426
|
-
load: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
427
|
-
error: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
428
|
-
animationStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
429
|
-
animationEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
430
|
-
animationIteration: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
431
|
-
transitionEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
432
|
-
} & {
|
|
433
|
-
blur: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event | void>;
|
|
434
|
-
} & {
|
|
435
|
-
keyDown: (whichKey?: string | number, init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
436
|
-
keyPress: (whichKey?: string | number, init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
437
|
-
keyUp: (whichKey?: string | number, init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
|
|
438
|
-
} & import("@instructure/ui-test-queries/src/utils/bindElementToMethods").ObjWithCutFirstArg<{
|
|
439
|
-
findInput: (...args: any) => Promise<any>;
|
|
440
|
-
findOptionsList: (...args: any) => Promise<any>;
|
|
441
|
-
}>>;
|
|
442
|
-
} & Record<"findInput" | "findOptionsList", (...args: import("@instructure/ui-test-queries/src/utils/parseQueryArguments").QueryArguments) => Promise<unknown>>;
|
|
443
|
-
//# sourceMappingURL=TimeSelectLocator.d.ts.map
|