@instructure/ui-pagination 8.10.1 → 8.10.3-snapshot.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 +4 -0
- package/LICENSE.md +27 -0
- package/es/Pagination/PaginationArrowButton/index.js +10 -1
- package/es/Pagination/PaginationButton/index.js +9 -1
- package/es/Pagination/index.js +3 -0
- package/lib/Pagination/PaginationArrowButton/index.js +10 -1
- package/lib/Pagination/PaginationButton/index.js +9 -1
- package/lib/Pagination/index.js +3 -0
- package/package.json +22 -21
- package/src/Pagination/PaginationArrowButton/index.tsx +11 -1
- package/src/Pagination/PaginationButton/index.tsx +5 -0
- package/src/Pagination/index.tsx +3 -0
- package/src/Pagination/props.ts +1 -1
- package/types/Pagination/PaginationArrowButton/PaginationArrowButtonLocator.d.ts +64 -64
- package/types/Pagination/PaginationArrowButton/index.d.ts +1 -0
- package/types/Pagination/PaginationArrowButton/index.d.ts.map +1 -1
- package/types/Pagination/PaginationButton/index.d.ts +1 -0
- package/types/Pagination/PaginationButton/index.d.ts.map +1 -1
- package/types/Pagination/PaginationLocator.d.ts +304 -304
- package/types/Pagination/index.d.ts +3 -2
- package/types/Pagination/index.d.ts.map +1 -1
- package/types/Pagination/props.d.ts +1 -1
- package/types/Pagination/props.d.ts.map +1 -1
|
@@ -13,24 +13,28 @@ export declare const PaginationLocator: {
|
|
|
13
13
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
14
14
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
15
15
|
} & {
|
|
16
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
17
|
+
highlight: boolean;
|
|
18
|
+
} | undefined) => string;
|
|
19
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
20
|
+
children: (selector: string) => Element[];
|
|
21
|
+
title: () => string | null | undefined;
|
|
22
|
+
id: () => string;
|
|
23
|
+
tagName: () => string;
|
|
24
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
25
|
+
getBoundingClientRect: () => DOMRect;
|
|
26
|
+
matches: (selector: string | undefined) => boolean;
|
|
16
27
|
visible: () => boolean;
|
|
17
28
|
value: () => string | null;
|
|
18
29
|
disabled: () => string | null;
|
|
19
30
|
role: () => string | null;
|
|
20
|
-
id: () => string;
|
|
21
31
|
label: () => string | null | undefined;
|
|
22
|
-
title: () => string | null | undefined;
|
|
23
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
24
|
-
highlight: boolean;
|
|
25
|
-
} | undefined) => string;
|
|
26
32
|
getId: () => string;
|
|
27
33
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
28
34
|
getOwnerDocument: () => Document;
|
|
29
35
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
30
36
|
getTagName: () => string;
|
|
31
|
-
tagName: () => string;
|
|
32
37
|
typeIn: (text: string) => Promise<void>;
|
|
33
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
34
38
|
getDOMNode: () => Element;
|
|
35
39
|
node: () => Element;
|
|
36
40
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -38,9 +42,8 @@ export declare const PaginationLocator: {
|
|
|
38
42
|
} | undefined) => void;
|
|
39
43
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
40
44
|
getTextContent: () => string | null;
|
|
41
|
-
getParentNode: () =>
|
|
42
|
-
parent: () =>
|
|
43
|
-
getBoundingClientRect: () => DOMRect;
|
|
45
|
+
getParentNode: () => ParentNode | null;
|
|
46
|
+
parent: () => ParentNode | null;
|
|
44
47
|
rect: () => DOMRect;
|
|
45
48
|
hasClass: (classname: string) => boolean;
|
|
46
49
|
containsFocus: () => boolean;
|
|
@@ -52,19 +55,17 @@ export declare const PaginationLocator: {
|
|
|
52
55
|
exists: () => boolean;
|
|
53
56
|
text: () => string | null;
|
|
54
57
|
empty: () => boolean;
|
|
55
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
56
58
|
descendants: (selector: string) => Element[];
|
|
57
|
-
ancestors: (selector: string) =>
|
|
59
|
+
ancestors: (selector: string) => ParentNode[];
|
|
58
60
|
attribute: (qualifiedName: string) => string | null;
|
|
59
61
|
style: (property: string) => string;
|
|
60
62
|
classNames: () => string[];
|
|
61
|
-
matches: (selector: string | undefined) => boolean;
|
|
62
63
|
checked: () => any;
|
|
63
64
|
selected: () => any;
|
|
64
65
|
readonly: () => any;
|
|
65
|
-
|
|
66
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
66
|
+
parents: (selector: string) => ParentNode[];
|
|
67
67
|
} & {
|
|
68
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
68
69
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
69
70
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
70
71
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -102,7 +103,6 @@ export declare const PaginationLocator: {
|
|
|
102
103
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
103
104
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
104
105
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
105
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
106
106
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
107
107
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
108
108
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -152,24 +152,28 @@ export declare const PaginationLocator: {
|
|
|
152
152
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
153
153
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
154
154
|
} & {
|
|
155
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
156
|
+
highlight: boolean;
|
|
157
|
+
} | undefined) => string;
|
|
158
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
159
|
+
children: (selector: string) => Element[];
|
|
160
|
+
title: () => string | null | undefined;
|
|
161
|
+
id: () => string;
|
|
162
|
+
tagName: () => string;
|
|
163
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
164
|
+
getBoundingClientRect: () => DOMRect;
|
|
165
|
+
matches: (selector: string | undefined) => boolean;
|
|
155
166
|
visible: () => boolean;
|
|
156
167
|
value: () => string | null;
|
|
157
168
|
disabled: () => string | null;
|
|
158
169
|
role: () => string | null;
|
|
159
|
-
id: () => string;
|
|
160
170
|
label: () => string | null | undefined;
|
|
161
|
-
title: () => string | null | undefined;
|
|
162
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
163
|
-
highlight: boolean;
|
|
164
|
-
} | undefined) => string;
|
|
165
171
|
getId: () => string;
|
|
166
172
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
167
173
|
getOwnerDocument: () => Document;
|
|
168
174
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
169
175
|
getTagName: () => string;
|
|
170
|
-
tagName: () => string;
|
|
171
176
|
typeIn: (text: string) => Promise<void>;
|
|
172
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
173
177
|
getDOMNode: () => Element;
|
|
174
178
|
node: () => Element;
|
|
175
179
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -177,9 +181,8 @@ export declare const PaginationLocator: {
|
|
|
177
181
|
} | undefined) => void;
|
|
178
182
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
179
183
|
getTextContent: () => string | null;
|
|
180
|
-
getParentNode: () =>
|
|
181
|
-
parent: () =>
|
|
182
|
-
getBoundingClientRect: () => DOMRect;
|
|
184
|
+
getParentNode: () => ParentNode | null;
|
|
185
|
+
parent: () => ParentNode | null;
|
|
183
186
|
rect: () => DOMRect;
|
|
184
187
|
hasClass: (classname: string) => boolean;
|
|
185
188
|
containsFocus: () => boolean;
|
|
@@ -191,19 +194,17 @@ export declare const PaginationLocator: {
|
|
|
191
194
|
exists: () => boolean;
|
|
192
195
|
text: () => string | null;
|
|
193
196
|
empty: () => boolean;
|
|
194
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
195
197
|
descendants: (selector: string) => Element[];
|
|
196
|
-
ancestors: (selector: string) =>
|
|
198
|
+
ancestors: (selector: string) => ParentNode[];
|
|
197
199
|
attribute: (qualifiedName: string) => string | null;
|
|
198
200
|
style: (property: string) => string;
|
|
199
201
|
classNames: () => string[];
|
|
200
|
-
matches: (selector: string | undefined) => boolean;
|
|
201
202
|
checked: () => any;
|
|
202
203
|
selected: () => any;
|
|
203
204
|
readonly: () => any;
|
|
204
|
-
|
|
205
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
205
|
+
parents: (selector: string) => ParentNode[];
|
|
206
206
|
} & {
|
|
207
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
207
208
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
208
209
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
209
210
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -241,7 +242,6 @@ export declare const PaginationLocator: {
|
|
|
241
242
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
242
243
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
243
244
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
244
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
245
245
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
246
246
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
247
247
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -291,24 +291,28 @@ export declare const PaginationLocator: {
|
|
|
291
291
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
292
292
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
293
293
|
} & {
|
|
294
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
295
|
+
highlight: boolean;
|
|
296
|
+
} | undefined) => string;
|
|
297
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
298
|
+
children: (selector: string) => Element[];
|
|
299
|
+
title: () => string | null | undefined;
|
|
300
|
+
id: () => string;
|
|
301
|
+
tagName: () => string;
|
|
302
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
303
|
+
getBoundingClientRect: () => DOMRect;
|
|
304
|
+
matches: (selector: string | undefined) => boolean;
|
|
294
305
|
visible: () => boolean;
|
|
295
306
|
value: () => string | null;
|
|
296
307
|
disabled: () => string | null;
|
|
297
308
|
role: () => string | null;
|
|
298
|
-
id: () => string;
|
|
299
309
|
label: () => string | null | undefined;
|
|
300
|
-
title: () => string | null | undefined;
|
|
301
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
302
|
-
highlight: boolean;
|
|
303
|
-
} | undefined) => string;
|
|
304
310
|
getId: () => string;
|
|
305
311
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
306
312
|
getOwnerDocument: () => Document;
|
|
307
313
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
308
314
|
getTagName: () => string;
|
|
309
|
-
tagName: () => string;
|
|
310
315
|
typeIn: (text: string) => Promise<void>;
|
|
311
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
312
316
|
getDOMNode: () => Element;
|
|
313
317
|
node: () => Element;
|
|
314
318
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -316,9 +320,8 @@ export declare const PaginationLocator: {
|
|
|
316
320
|
} | undefined) => void;
|
|
317
321
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
318
322
|
getTextContent: () => string | null;
|
|
319
|
-
getParentNode: () =>
|
|
320
|
-
parent: () =>
|
|
321
|
-
getBoundingClientRect: () => DOMRect;
|
|
323
|
+
getParentNode: () => ParentNode | null;
|
|
324
|
+
parent: () => ParentNode | null;
|
|
322
325
|
rect: () => DOMRect;
|
|
323
326
|
hasClass: (classname: string) => boolean;
|
|
324
327
|
containsFocus: () => boolean;
|
|
@@ -330,19 +333,17 @@ export declare const PaginationLocator: {
|
|
|
330
333
|
exists: () => boolean;
|
|
331
334
|
text: () => string | null;
|
|
332
335
|
empty: () => boolean;
|
|
333
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
334
336
|
descendants: (selector: string) => Element[];
|
|
335
|
-
ancestors: (selector: string) =>
|
|
337
|
+
ancestors: (selector: string) => ParentNode[];
|
|
336
338
|
attribute: (qualifiedName: string) => string | null;
|
|
337
339
|
style: (property: string) => string;
|
|
338
340
|
classNames: () => string[];
|
|
339
|
-
matches: (selector: string | undefined) => boolean;
|
|
340
341
|
checked: () => any;
|
|
341
342
|
selected: () => any;
|
|
342
343
|
readonly: () => any;
|
|
343
|
-
|
|
344
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
344
|
+
parents: (selector: string) => ParentNode[];
|
|
345
345
|
} & {
|
|
346
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
346
347
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
347
348
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
348
349
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -380,7 +381,6 @@ export declare const PaginationLocator: {
|
|
|
380
381
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
381
382
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
382
383
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
383
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
384
384
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
385
385
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
386
386
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -440,24 +440,28 @@ export declare const PaginationLocator: {
|
|
|
440
440
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
441
441
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
442
442
|
} & {
|
|
443
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
444
|
+
highlight: boolean;
|
|
445
|
+
} | undefined) => string;
|
|
446
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
447
|
+
children: (selector: string) => Element[];
|
|
448
|
+
title: () => string | null | undefined;
|
|
449
|
+
id: () => string;
|
|
450
|
+
tagName: () => string;
|
|
451
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
452
|
+
getBoundingClientRect: () => DOMRect;
|
|
453
|
+
matches: (selector: string | undefined) => boolean;
|
|
443
454
|
visible: () => boolean;
|
|
444
455
|
value: () => string | null;
|
|
445
456
|
disabled: () => string | null;
|
|
446
457
|
role: () => string | null;
|
|
447
|
-
id: () => string;
|
|
448
458
|
label: () => string | null | undefined;
|
|
449
|
-
title: () => string | null | undefined;
|
|
450
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
451
|
-
highlight: boolean;
|
|
452
|
-
} | undefined) => string;
|
|
453
459
|
getId: () => string;
|
|
454
460
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
455
461
|
getOwnerDocument: () => Document;
|
|
456
462
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
457
463
|
getTagName: () => string;
|
|
458
|
-
tagName: () => string;
|
|
459
464
|
typeIn: (text: string) => Promise<void>;
|
|
460
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
461
465
|
getDOMNode: () => Element;
|
|
462
466
|
node: () => Element;
|
|
463
467
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -465,9 +469,8 @@ export declare const PaginationLocator: {
|
|
|
465
469
|
} | undefined) => void;
|
|
466
470
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
467
471
|
getTextContent: () => string | null;
|
|
468
|
-
getParentNode: () =>
|
|
469
|
-
parent: () =>
|
|
470
|
-
getBoundingClientRect: () => DOMRect;
|
|
472
|
+
getParentNode: () => ParentNode | null;
|
|
473
|
+
parent: () => ParentNode | null;
|
|
471
474
|
rect: () => DOMRect;
|
|
472
475
|
hasClass: (classname: string) => boolean;
|
|
473
476
|
containsFocus: () => boolean;
|
|
@@ -479,19 +482,17 @@ export declare const PaginationLocator: {
|
|
|
479
482
|
exists: () => boolean;
|
|
480
483
|
text: () => string | null;
|
|
481
484
|
empty: () => boolean;
|
|
482
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
483
485
|
descendants: (selector: string) => Element[];
|
|
484
|
-
ancestors: (selector: string) =>
|
|
486
|
+
ancestors: (selector: string) => ParentNode[];
|
|
485
487
|
attribute: (qualifiedName: string) => string | null;
|
|
486
488
|
style: (property: string) => string;
|
|
487
489
|
classNames: () => string[];
|
|
488
|
-
matches: (selector: string | undefined) => boolean;
|
|
489
490
|
checked: () => any;
|
|
490
491
|
selected: () => any;
|
|
491
492
|
readonly: () => any;
|
|
492
|
-
|
|
493
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
493
|
+
parents: (selector: string) => ParentNode[];
|
|
494
494
|
} & {
|
|
495
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
495
496
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
496
497
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
497
498
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -529,7 +530,6 @@ export declare const PaginationLocator: {
|
|
|
529
530
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
530
531
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
531
532
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
532
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
533
533
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
534
534
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
535
535
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -579,24 +579,28 @@ export declare const PaginationLocator: {
|
|
|
579
579
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
580
580
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
581
581
|
} & {
|
|
582
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
583
|
+
highlight: boolean;
|
|
584
|
+
} | undefined) => string;
|
|
585
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
586
|
+
children: (selector: string) => Element[];
|
|
587
|
+
title: () => string | null | undefined;
|
|
588
|
+
id: () => string;
|
|
589
|
+
tagName: () => string;
|
|
590
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
591
|
+
getBoundingClientRect: () => DOMRect;
|
|
592
|
+
matches: (selector: string | undefined) => boolean;
|
|
582
593
|
visible: () => boolean;
|
|
583
594
|
value: () => string | null;
|
|
584
595
|
disabled: () => string | null;
|
|
585
596
|
role: () => string | null;
|
|
586
|
-
id: () => string;
|
|
587
597
|
label: () => string | null | undefined;
|
|
588
|
-
title: () => string | null | undefined;
|
|
589
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
590
|
-
highlight: boolean;
|
|
591
|
-
} | undefined) => string;
|
|
592
598
|
getId: () => string;
|
|
593
599
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
594
600
|
getOwnerDocument: () => Document;
|
|
595
601
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
596
602
|
getTagName: () => string;
|
|
597
|
-
tagName: () => string;
|
|
598
603
|
typeIn: (text: string) => Promise<void>;
|
|
599
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
600
604
|
getDOMNode: () => Element;
|
|
601
605
|
node: () => Element;
|
|
602
606
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -604,9 +608,8 @@ export declare const PaginationLocator: {
|
|
|
604
608
|
} | undefined) => void;
|
|
605
609
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
606
610
|
getTextContent: () => string | null;
|
|
607
|
-
getParentNode: () =>
|
|
608
|
-
parent: () =>
|
|
609
|
-
getBoundingClientRect: () => DOMRect;
|
|
611
|
+
getParentNode: () => ParentNode | null;
|
|
612
|
+
parent: () => ParentNode | null;
|
|
610
613
|
rect: () => DOMRect;
|
|
611
614
|
hasClass: (classname: string) => boolean;
|
|
612
615
|
containsFocus: () => boolean;
|
|
@@ -618,19 +621,17 @@ export declare const PaginationLocator: {
|
|
|
618
621
|
exists: () => boolean;
|
|
619
622
|
text: () => string | null;
|
|
620
623
|
empty: () => boolean;
|
|
621
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
622
624
|
descendants: (selector: string) => Element[];
|
|
623
|
-
ancestors: (selector: string) =>
|
|
625
|
+
ancestors: (selector: string) => ParentNode[];
|
|
624
626
|
attribute: (qualifiedName: string) => string | null;
|
|
625
627
|
style: (property: string) => string;
|
|
626
628
|
classNames: () => string[];
|
|
627
|
-
matches: (selector: string | undefined) => boolean;
|
|
628
629
|
checked: () => any;
|
|
629
630
|
selected: () => any;
|
|
630
631
|
readonly: () => any;
|
|
631
|
-
|
|
632
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
632
|
+
parents: (selector: string) => ParentNode[];
|
|
633
633
|
} & {
|
|
634
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
634
635
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
635
636
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
636
637
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -668,7 +669,6 @@ export declare const PaginationLocator: {
|
|
|
668
669
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
669
670
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
670
671
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
671
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
672
672
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
673
673
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
674
674
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -718,24 +718,28 @@ export declare const PaginationLocator: {
|
|
|
718
718
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
719
719
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
720
720
|
} & {
|
|
721
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
722
|
+
highlight: boolean;
|
|
723
|
+
} | undefined) => string;
|
|
724
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
725
|
+
children: (selector: string) => Element[];
|
|
726
|
+
title: () => string | null | undefined;
|
|
727
|
+
id: () => string;
|
|
728
|
+
tagName: () => string;
|
|
729
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
730
|
+
getBoundingClientRect: () => DOMRect;
|
|
731
|
+
matches: (selector: string | undefined) => boolean;
|
|
721
732
|
visible: () => boolean;
|
|
722
733
|
value: () => string | null;
|
|
723
734
|
disabled: () => string | null;
|
|
724
735
|
role: () => string | null;
|
|
725
|
-
id: () => string;
|
|
726
736
|
label: () => string | null | undefined;
|
|
727
|
-
title: () => string | null | undefined;
|
|
728
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
729
|
-
highlight: boolean;
|
|
730
|
-
} | undefined) => string;
|
|
731
737
|
getId: () => string;
|
|
732
738
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
733
739
|
getOwnerDocument: () => Document;
|
|
734
740
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
735
741
|
getTagName: () => string;
|
|
736
|
-
tagName: () => string;
|
|
737
742
|
typeIn: (text: string) => Promise<void>;
|
|
738
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
739
743
|
getDOMNode: () => Element;
|
|
740
744
|
node: () => Element;
|
|
741
745
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -743,9 +747,8 @@ export declare const PaginationLocator: {
|
|
|
743
747
|
} | undefined) => void;
|
|
744
748
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
745
749
|
getTextContent: () => string | null;
|
|
746
|
-
getParentNode: () =>
|
|
747
|
-
parent: () =>
|
|
748
|
-
getBoundingClientRect: () => DOMRect;
|
|
750
|
+
getParentNode: () => ParentNode | null;
|
|
751
|
+
parent: () => ParentNode | null;
|
|
749
752
|
rect: () => DOMRect;
|
|
750
753
|
hasClass: (classname: string) => boolean;
|
|
751
754
|
containsFocus: () => boolean;
|
|
@@ -757,19 +760,17 @@ export declare const PaginationLocator: {
|
|
|
757
760
|
exists: () => boolean;
|
|
758
761
|
text: () => string | null;
|
|
759
762
|
empty: () => boolean;
|
|
760
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
761
763
|
descendants: (selector: string) => Element[];
|
|
762
|
-
ancestors: (selector: string) =>
|
|
764
|
+
ancestors: (selector: string) => ParentNode[];
|
|
763
765
|
attribute: (qualifiedName: string) => string | null;
|
|
764
766
|
style: (property: string) => string;
|
|
765
767
|
classNames: () => string[];
|
|
766
|
-
matches: (selector: string | undefined) => boolean;
|
|
767
768
|
checked: () => any;
|
|
768
769
|
selected: () => any;
|
|
769
770
|
readonly: () => any;
|
|
770
|
-
|
|
771
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
771
|
+
parents: (selector: string) => ParentNode[];
|
|
772
772
|
} & {
|
|
773
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
773
774
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
774
775
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
775
776
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -807,7 +808,6 @@ export declare const PaginationLocator: {
|
|
|
807
808
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
808
809
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
809
810
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
810
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
811
811
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
812
812
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
813
813
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -857,24 +857,28 @@ export declare const PaginationLocator: {
|
|
|
857
857
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
858
858
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
859
859
|
} & {
|
|
860
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
861
|
+
highlight: boolean;
|
|
862
|
+
} | undefined) => string;
|
|
863
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
864
|
+
children: (selector: string) => Element[];
|
|
865
|
+
title: () => string | null | undefined;
|
|
866
|
+
id: () => string;
|
|
867
|
+
tagName: () => string;
|
|
868
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
869
|
+
getBoundingClientRect: () => DOMRect;
|
|
870
|
+
matches: (selector: string | undefined) => boolean;
|
|
860
871
|
visible: () => boolean;
|
|
861
872
|
value: () => string | null;
|
|
862
873
|
disabled: () => string | null;
|
|
863
874
|
role: () => string | null;
|
|
864
|
-
id: () => string;
|
|
865
875
|
label: () => string | null | undefined;
|
|
866
|
-
title: () => string | null | undefined;
|
|
867
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
868
|
-
highlight: boolean;
|
|
869
|
-
} | undefined) => string;
|
|
870
876
|
getId: () => string;
|
|
871
877
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
872
878
|
getOwnerDocument: () => Document;
|
|
873
879
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
874
880
|
getTagName: () => string;
|
|
875
|
-
tagName: () => string;
|
|
876
881
|
typeIn: (text: string) => Promise<void>;
|
|
877
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
878
882
|
getDOMNode: () => Element;
|
|
879
883
|
node: () => Element;
|
|
880
884
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -882,9 +886,8 @@ export declare const PaginationLocator: {
|
|
|
882
886
|
} | undefined) => void;
|
|
883
887
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
884
888
|
getTextContent: () => string | null;
|
|
885
|
-
getParentNode: () =>
|
|
886
|
-
parent: () =>
|
|
887
|
-
getBoundingClientRect: () => DOMRect;
|
|
889
|
+
getParentNode: () => ParentNode | null;
|
|
890
|
+
parent: () => ParentNode | null;
|
|
888
891
|
rect: () => DOMRect;
|
|
889
892
|
hasClass: (classname: string) => boolean;
|
|
890
893
|
containsFocus: () => boolean;
|
|
@@ -896,19 +899,17 @@ export declare const PaginationLocator: {
|
|
|
896
899
|
exists: () => boolean;
|
|
897
900
|
text: () => string | null;
|
|
898
901
|
empty: () => boolean;
|
|
899
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
900
902
|
descendants: (selector: string) => Element[];
|
|
901
|
-
ancestors: (selector: string) =>
|
|
903
|
+
ancestors: (selector: string) => ParentNode[];
|
|
902
904
|
attribute: (qualifiedName: string) => string | null;
|
|
903
905
|
style: (property: string) => string;
|
|
904
906
|
classNames: () => string[];
|
|
905
|
-
matches: (selector: string | undefined) => boolean;
|
|
906
907
|
checked: () => any;
|
|
907
908
|
selected: () => any;
|
|
908
909
|
readonly: () => any;
|
|
909
|
-
|
|
910
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
910
|
+
parents: (selector: string) => ParentNode[];
|
|
911
911
|
} & {
|
|
912
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
912
913
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
913
914
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
914
915
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -946,7 +947,6 @@ export declare const PaginationLocator: {
|
|
|
946
947
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
947
948
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
948
949
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
949
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
950
950
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
951
951
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
952
952
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1000,24 +1000,28 @@ export declare const PaginationLocator: {
|
|
|
1000
1000
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
1001
1001
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
1002
1002
|
} & {
|
|
1003
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
1004
|
+
highlight: boolean;
|
|
1005
|
+
} | undefined) => string;
|
|
1006
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1007
|
+
children: (selector: string) => Element[];
|
|
1008
|
+
title: () => string | null | undefined;
|
|
1009
|
+
id: () => string;
|
|
1010
|
+
tagName: () => string;
|
|
1011
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1012
|
+
getBoundingClientRect: () => DOMRect;
|
|
1013
|
+
matches: (selector: string | undefined) => boolean;
|
|
1003
1014
|
visible: () => boolean;
|
|
1004
1015
|
value: () => string | null;
|
|
1005
1016
|
disabled: () => string | null;
|
|
1006
1017
|
role: () => string | null;
|
|
1007
|
-
id: () => string;
|
|
1008
1018
|
label: () => string | null | undefined;
|
|
1009
|
-
title: () => string | null | undefined;
|
|
1010
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
1011
|
-
highlight: boolean;
|
|
1012
|
-
} | undefined) => string;
|
|
1013
1019
|
getId: () => string;
|
|
1014
1020
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1015
1021
|
getOwnerDocument: () => Document;
|
|
1016
1022
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1017
1023
|
getTagName: () => string;
|
|
1018
|
-
tagName: () => string;
|
|
1019
1024
|
typeIn: (text: string) => Promise<void>;
|
|
1020
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1021
1025
|
getDOMNode: () => Element;
|
|
1022
1026
|
node: () => Element;
|
|
1023
1027
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1025,9 +1029,8 @@ export declare const PaginationLocator: {
|
|
|
1025
1029
|
} | undefined) => void;
|
|
1026
1030
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
1027
1031
|
getTextContent: () => string | null;
|
|
1028
|
-
getParentNode: () =>
|
|
1029
|
-
parent: () =>
|
|
1030
|
-
getBoundingClientRect: () => DOMRect;
|
|
1032
|
+
getParentNode: () => ParentNode | null;
|
|
1033
|
+
parent: () => ParentNode | null;
|
|
1031
1034
|
rect: () => DOMRect;
|
|
1032
1035
|
hasClass: (classname: string) => boolean;
|
|
1033
1036
|
containsFocus: () => boolean;
|
|
@@ -1039,19 +1042,17 @@ export declare const PaginationLocator: {
|
|
|
1039
1042
|
exists: () => boolean;
|
|
1040
1043
|
text: () => string | null;
|
|
1041
1044
|
empty: () => boolean;
|
|
1042
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1043
1045
|
descendants: (selector: string) => Element[];
|
|
1044
|
-
ancestors: (selector: string) =>
|
|
1046
|
+
ancestors: (selector: string) => ParentNode[];
|
|
1045
1047
|
attribute: (qualifiedName: string) => string | null;
|
|
1046
1048
|
style: (property: string) => string;
|
|
1047
1049
|
classNames: () => string[];
|
|
1048
|
-
matches: (selector: string | undefined) => boolean;
|
|
1049
1050
|
checked: () => any;
|
|
1050
1051
|
selected: () => any;
|
|
1051
1052
|
readonly: () => any;
|
|
1052
|
-
|
|
1053
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
1053
|
+
parents: (selector: string) => ParentNode[];
|
|
1054
1054
|
} & {
|
|
1055
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1055
1056
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1056
1057
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1057
1058
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1089,7 +1090,6 @@ export declare const PaginationLocator: {
|
|
|
1089
1090
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1090
1091
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1091
1092
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1092
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1093
1093
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1094
1094
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1095
1095
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1139,24 +1139,28 @@ export declare const PaginationLocator: {
|
|
|
1139
1139
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
1140
1140
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
1141
1141
|
} & {
|
|
1142
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
1143
|
+
highlight: boolean;
|
|
1144
|
+
} | undefined) => string;
|
|
1145
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1146
|
+
children: (selector: string) => Element[];
|
|
1147
|
+
title: () => string | null | undefined;
|
|
1148
|
+
id: () => string;
|
|
1149
|
+
tagName: () => string;
|
|
1150
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1151
|
+
getBoundingClientRect: () => DOMRect;
|
|
1152
|
+
matches: (selector: string | undefined) => boolean;
|
|
1142
1153
|
visible: () => boolean;
|
|
1143
1154
|
value: () => string | null;
|
|
1144
1155
|
disabled: () => string | null;
|
|
1145
1156
|
role: () => string | null;
|
|
1146
|
-
id: () => string;
|
|
1147
1157
|
label: () => string | null | undefined;
|
|
1148
|
-
title: () => string | null | undefined;
|
|
1149
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
1150
|
-
highlight: boolean;
|
|
1151
|
-
} | undefined) => string;
|
|
1152
1158
|
getId: () => string;
|
|
1153
1159
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1154
1160
|
getOwnerDocument: () => Document;
|
|
1155
1161
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1156
1162
|
getTagName: () => string;
|
|
1157
|
-
tagName: () => string;
|
|
1158
1163
|
typeIn: (text: string) => Promise<void>;
|
|
1159
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1160
1164
|
getDOMNode: () => Element;
|
|
1161
1165
|
node: () => Element;
|
|
1162
1166
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1164,9 +1168,8 @@ export declare const PaginationLocator: {
|
|
|
1164
1168
|
} | undefined) => void;
|
|
1165
1169
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
1166
1170
|
getTextContent: () => string | null;
|
|
1167
|
-
getParentNode: () =>
|
|
1168
|
-
parent: () =>
|
|
1169
|
-
getBoundingClientRect: () => DOMRect;
|
|
1171
|
+
getParentNode: () => ParentNode | null;
|
|
1172
|
+
parent: () => ParentNode | null;
|
|
1170
1173
|
rect: () => DOMRect;
|
|
1171
1174
|
hasClass: (classname: string) => boolean;
|
|
1172
1175
|
containsFocus: () => boolean;
|
|
@@ -1178,19 +1181,17 @@ export declare const PaginationLocator: {
|
|
|
1178
1181
|
exists: () => boolean;
|
|
1179
1182
|
text: () => string | null;
|
|
1180
1183
|
empty: () => boolean;
|
|
1181
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1182
1184
|
descendants: (selector: string) => Element[];
|
|
1183
|
-
ancestors: (selector: string) =>
|
|
1185
|
+
ancestors: (selector: string) => ParentNode[];
|
|
1184
1186
|
attribute: (qualifiedName: string) => string | null;
|
|
1185
1187
|
style: (property: string) => string;
|
|
1186
1188
|
classNames: () => string[];
|
|
1187
|
-
matches: (selector: string | undefined) => boolean;
|
|
1188
1189
|
checked: () => any;
|
|
1189
1190
|
selected: () => any;
|
|
1190
1191
|
readonly: () => any;
|
|
1191
|
-
|
|
1192
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
1192
|
+
parents: (selector: string) => ParentNode[];
|
|
1193
1193
|
} & {
|
|
1194
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1194
1195
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1195
1196
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1196
1197
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1228,7 +1229,6 @@ export declare const PaginationLocator: {
|
|
|
1228
1229
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1229
1230
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1230
1231
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1231
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1232
1232
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1233
1233
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1234
1234
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1278,24 +1278,28 @@ export declare const PaginationLocator: {
|
|
|
1278
1278
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
1279
1279
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
1280
1280
|
} & {
|
|
1281
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
1282
|
+
highlight: boolean;
|
|
1283
|
+
} | undefined) => string;
|
|
1284
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1285
|
+
children: (selector: string) => Element[];
|
|
1286
|
+
title: () => string | null | undefined;
|
|
1287
|
+
id: () => string;
|
|
1288
|
+
tagName: () => string;
|
|
1289
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1290
|
+
getBoundingClientRect: () => DOMRect;
|
|
1291
|
+
matches: (selector: string | undefined) => boolean;
|
|
1281
1292
|
visible: () => boolean;
|
|
1282
1293
|
value: () => string | null;
|
|
1283
1294
|
disabled: () => string | null;
|
|
1284
1295
|
role: () => string | null;
|
|
1285
|
-
id: () => string;
|
|
1286
1296
|
label: () => string | null | undefined;
|
|
1287
|
-
title: () => string | null | undefined;
|
|
1288
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
1289
|
-
highlight: boolean;
|
|
1290
|
-
} | undefined) => string;
|
|
1291
1297
|
getId: () => string;
|
|
1292
1298
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1293
1299
|
getOwnerDocument: () => Document;
|
|
1294
1300
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1295
1301
|
getTagName: () => string;
|
|
1296
|
-
tagName: () => string;
|
|
1297
1302
|
typeIn: (text: string) => Promise<void>;
|
|
1298
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1299
1303
|
getDOMNode: () => Element;
|
|
1300
1304
|
node: () => Element;
|
|
1301
1305
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1303,9 +1307,8 @@ export declare const PaginationLocator: {
|
|
|
1303
1307
|
} | undefined) => void;
|
|
1304
1308
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
1305
1309
|
getTextContent: () => string | null;
|
|
1306
|
-
getParentNode: () =>
|
|
1307
|
-
parent: () =>
|
|
1308
|
-
getBoundingClientRect: () => DOMRect;
|
|
1310
|
+
getParentNode: () => ParentNode | null;
|
|
1311
|
+
parent: () => ParentNode | null;
|
|
1309
1312
|
rect: () => DOMRect;
|
|
1310
1313
|
hasClass: (classname: string) => boolean;
|
|
1311
1314
|
containsFocus: () => boolean;
|
|
@@ -1317,19 +1320,17 @@ export declare const PaginationLocator: {
|
|
|
1317
1320
|
exists: () => boolean;
|
|
1318
1321
|
text: () => string | null;
|
|
1319
1322
|
empty: () => boolean;
|
|
1320
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1321
1323
|
descendants: (selector: string) => Element[];
|
|
1322
|
-
ancestors: (selector: string) =>
|
|
1324
|
+
ancestors: (selector: string) => ParentNode[];
|
|
1323
1325
|
attribute: (qualifiedName: string) => string | null;
|
|
1324
1326
|
style: (property: string) => string;
|
|
1325
1327
|
classNames: () => string[];
|
|
1326
|
-
matches: (selector: string | undefined) => boolean;
|
|
1327
1328
|
checked: () => any;
|
|
1328
1329
|
selected: () => any;
|
|
1329
1330
|
readonly: () => any;
|
|
1330
|
-
|
|
1331
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
1331
|
+
parents: (selector: string) => ParentNode[];
|
|
1332
1332
|
} & {
|
|
1333
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1333
1334
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1334
1335
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1335
1336
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1367,7 +1368,6 @@ export declare const PaginationLocator: {
|
|
|
1367
1368
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1368
1369
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1369
1370
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1370
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1371
1371
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1372
1372
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1373
1373
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1417,24 +1417,28 @@ export declare const PaginationLocator: {
|
|
|
1417
1417
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
1418
1418
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
1419
1419
|
} & {
|
|
1420
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
1421
|
+
highlight: boolean;
|
|
1422
|
+
} | undefined) => string;
|
|
1423
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1424
|
+
children: (selector: string) => Element[];
|
|
1425
|
+
title: () => string | null | undefined;
|
|
1426
|
+
id: () => string;
|
|
1427
|
+
tagName: () => string;
|
|
1428
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1429
|
+
getBoundingClientRect: () => DOMRect;
|
|
1430
|
+
matches: (selector: string | undefined) => boolean;
|
|
1420
1431
|
visible: () => boolean;
|
|
1421
1432
|
value: () => string | null;
|
|
1422
1433
|
disabled: () => string | null;
|
|
1423
1434
|
role: () => string | null;
|
|
1424
|
-
id: () => string;
|
|
1425
1435
|
label: () => string | null | undefined;
|
|
1426
|
-
title: () => string | null | undefined;
|
|
1427
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
1428
|
-
highlight: boolean;
|
|
1429
|
-
} | undefined) => string;
|
|
1430
1436
|
getId: () => string;
|
|
1431
1437
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1432
1438
|
getOwnerDocument: () => Document;
|
|
1433
1439
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1434
1440
|
getTagName: () => string;
|
|
1435
|
-
tagName: () => string;
|
|
1436
1441
|
typeIn: (text: string) => Promise<void>;
|
|
1437
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1438
1442
|
getDOMNode: () => Element;
|
|
1439
1443
|
node: () => Element;
|
|
1440
1444
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1442,9 +1446,8 @@ export declare const PaginationLocator: {
|
|
|
1442
1446
|
} | undefined) => void;
|
|
1443
1447
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
1444
1448
|
getTextContent: () => string | null;
|
|
1445
|
-
getParentNode: () =>
|
|
1446
|
-
parent: () =>
|
|
1447
|
-
getBoundingClientRect: () => DOMRect;
|
|
1449
|
+
getParentNode: () => ParentNode | null;
|
|
1450
|
+
parent: () => ParentNode | null;
|
|
1448
1451
|
rect: () => DOMRect;
|
|
1449
1452
|
hasClass: (classname: string) => boolean;
|
|
1450
1453
|
containsFocus: () => boolean;
|
|
@@ -1456,19 +1459,17 @@ export declare const PaginationLocator: {
|
|
|
1456
1459
|
exists: () => boolean;
|
|
1457
1460
|
text: () => string | null;
|
|
1458
1461
|
empty: () => boolean;
|
|
1459
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1460
1462
|
descendants: (selector: string) => Element[];
|
|
1461
|
-
ancestors: (selector: string) =>
|
|
1463
|
+
ancestors: (selector: string) => ParentNode[];
|
|
1462
1464
|
attribute: (qualifiedName: string) => string | null;
|
|
1463
1465
|
style: (property: string) => string;
|
|
1464
1466
|
classNames: () => string[];
|
|
1465
|
-
matches: (selector: string | undefined) => boolean;
|
|
1466
1467
|
checked: () => any;
|
|
1467
1468
|
selected: () => any;
|
|
1468
1469
|
readonly: () => any;
|
|
1469
|
-
|
|
1470
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
1470
|
+
parents: (selector: string) => ParentNode[];
|
|
1471
1471
|
} & {
|
|
1472
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1472
1473
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1473
1474
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1474
1475
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1506,7 +1507,6 @@ export declare const PaginationLocator: {
|
|
|
1506
1507
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1507
1508
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1508
1509
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1509
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1510
1510
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1511
1511
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1512
1512
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1560,24 +1560,28 @@ export declare const PaginationLocator: {
|
|
|
1560
1560
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
1561
1561
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
1562
1562
|
} & {
|
|
1563
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
1564
|
+
highlight: boolean;
|
|
1565
|
+
} | undefined) => string;
|
|
1566
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1567
|
+
children: (selector: string) => Element[];
|
|
1568
|
+
title: () => string | null | undefined;
|
|
1569
|
+
id: () => string;
|
|
1570
|
+
tagName: () => string;
|
|
1571
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1572
|
+
getBoundingClientRect: () => DOMRect;
|
|
1573
|
+
matches: (selector: string | undefined) => boolean;
|
|
1563
1574
|
visible: () => boolean;
|
|
1564
1575
|
value: () => string | null;
|
|
1565
1576
|
disabled: () => string | null;
|
|
1566
1577
|
role: () => string | null;
|
|
1567
|
-
id: () => string;
|
|
1568
1578
|
label: () => string | null | undefined;
|
|
1569
|
-
title: () => string | null | undefined;
|
|
1570
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
1571
|
-
highlight: boolean;
|
|
1572
|
-
} | undefined) => string;
|
|
1573
1579
|
getId: () => string;
|
|
1574
1580
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1575
1581
|
getOwnerDocument: () => Document;
|
|
1576
1582
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1577
1583
|
getTagName: () => string;
|
|
1578
|
-
tagName: () => string;
|
|
1579
1584
|
typeIn: (text: string) => Promise<void>;
|
|
1580
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1581
1585
|
getDOMNode: () => Element;
|
|
1582
1586
|
node: () => Element;
|
|
1583
1587
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1585,9 +1589,8 @@ export declare const PaginationLocator: {
|
|
|
1585
1589
|
} | undefined) => void;
|
|
1586
1590
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
1587
1591
|
getTextContent: () => string | null;
|
|
1588
|
-
getParentNode: () =>
|
|
1589
|
-
parent: () =>
|
|
1590
|
-
getBoundingClientRect: () => DOMRect;
|
|
1592
|
+
getParentNode: () => ParentNode | null;
|
|
1593
|
+
parent: () => ParentNode | null;
|
|
1591
1594
|
rect: () => DOMRect;
|
|
1592
1595
|
hasClass: (classname: string) => boolean;
|
|
1593
1596
|
containsFocus: () => boolean;
|
|
@@ -1599,19 +1602,17 @@ export declare const PaginationLocator: {
|
|
|
1599
1602
|
exists: () => boolean;
|
|
1600
1603
|
text: () => string | null;
|
|
1601
1604
|
empty: () => boolean;
|
|
1602
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1603
1605
|
descendants: (selector: string) => Element[];
|
|
1604
|
-
ancestors: (selector: string) =>
|
|
1606
|
+
ancestors: (selector: string) => ParentNode[];
|
|
1605
1607
|
attribute: (qualifiedName: string) => string | null;
|
|
1606
1608
|
style: (property: string) => string;
|
|
1607
1609
|
classNames: () => string[];
|
|
1608
|
-
matches: (selector: string | undefined) => boolean;
|
|
1609
1610
|
checked: () => any;
|
|
1610
1611
|
selected: () => any;
|
|
1611
1612
|
readonly: () => any;
|
|
1612
|
-
|
|
1613
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
1613
|
+
parents: (selector: string) => ParentNode[];
|
|
1614
1614
|
} & {
|
|
1615
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1615
1616
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1616
1617
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1617
1618
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1649,7 +1650,6 @@ export declare const PaginationLocator: {
|
|
|
1649
1650
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1650
1651
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1651
1652
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1652
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1653
1653
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1654
1654
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1655
1655
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1699,24 +1699,28 @@ export declare const PaginationLocator: {
|
|
|
1699
1699
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
1700
1700
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
1701
1701
|
} & {
|
|
1702
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
1703
|
+
highlight: boolean;
|
|
1704
|
+
} | undefined) => string;
|
|
1705
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1706
|
+
children: (selector: string) => Element[];
|
|
1707
|
+
title: () => string | null | undefined;
|
|
1708
|
+
id: () => string;
|
|
1709
|
+
tagName: () => string;
|
|
1710
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1711
|
+
getBoundingClientRect: () => DOMRect;
|
|
1712
|
+
matches: (selector: string | undefined) => boolean;
|
|
1702
1713
|
visible: () => boolean;
|
|
1703
1714
|
value: () => string | null;
|
|
1704
1715
|
disabled: () => string | null;
|
|
1705
1716
|
role: () => string | null;
|
|
1706
|
-
id: () => string;
|
|
1707
1717
|
label: () => string | null | undefined;
|
|
1708
|
-
title: () => string | null | undefined;
|
|
1709
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
1710
|
-
highlight: boolean;
|
|
1711
|
-
} | undefined) => string;
|
|
1712
1718
|
getId: () => string;
|
|
1713
1719
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1714
1720
|
getOwnerDocument: () => Document;
|
|
1715
1721
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1716
1722
|
getTagName: () => string;
|
|
1717
|
-
tagName: () => string;
|
|
1718
1723
|
typeIn: (text: string) => Promise<void>;
|
|
1719
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1720
1724
|
getDOMNode: () => Element;
|
|
1721
1725
|
node: () => Element;
|
|
1722
1726
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1724,9 +1728,8 @@ export declare const PaginationLocator: {
|
|
|
1724
1728
|
} | undefined) => void;
|
|
1725
1729
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
1726
1730
|
getTextContent: () => string | null;
|
|
1727
|
-
getParentNode: () =>
|
|
1728
|
-
parent: () =>
|
|
1729
|
-
getBoundingClientRect: () => DOMRect;
|
|
1731
|
+
getParentNode: () => ParentNode | null;
|
|
1732
|
+
parent: () => ParentNode | null;
|
|
1730
1733
|
rect: () => DOMRect;
|
|
1731
1734
|
hasClass: (classname: string) => boolean;
|
|
1732
1735
|
containsFocus: () => boolean;
|
|
@@ -1738,19 +1741,17 @@ export declare const PaginationLocator: {
|
|
|
1738
1741
|
exists: () => boolean;
|
|
1739
1742
|
text: () => string | null;
|
|
1740
1743
|
empty: () => boolean;
|
|
1741
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1742
1744
|
descendants: (selector: string) => Element[];
|
|
1743
|
-
ancestors: (selector: string) =>
|
|
1745
|
+
ancestors: (selector: string) => ParentNode[];
|
|
1744
1746
|
attribute: (qualifiedName: string) => string | null;
|
|
1745
1747
|
style: (property: string) => string;
|
|
1746
1748
|
classNames: () => string[];
|
|
1747
|
-
matches: (selector: string | undefined) => boolean;
|
|
1748
1749
|
checked: () => any;
|
|
1749
1750
|
selected: () => any;
|
|
1750
1751
|
readonly: () => any;
|
|
1751
|
-
|
|
1752
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
1752
|
+
parents: (selector: string) => ParentNode[];
|
|
1753
1753
|
} & {
|
|
1754
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1754
1755
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1755
1756
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1756
1757
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1788,7 +1789,6 @@ export declare const PaginationLocator: {
|
|
|
1788
1789
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1789
1790
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1790
1791
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1791
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1792
1792
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1793
1793
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1794
1794
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1838,24 +1838,28 @@ export declare const PaginationLocator: {
|
|
|
1838
1838
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
1839
1839
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
1840
1840
|
} & {
|
|
1841
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
1842
|
+
highlight: boolean;
|
|
1843
|
+
} | undefined) => string;
|
|
1844
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1845
|
+
children: (selector: string) => Element[];
|
|
1846
|
+
title: () => string | null | undefined;
|
|
1847
|
+
id: () => string;
|
|
1848
|
+
tagName: () => string;
|
|
1849
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1850
|
+
getBoundingClientRect: () => DOMRect;
|
|
1851
|
+
matches: (selector: string | undefined) => boolean;
|
|
1841
1852
|
visible: () => boolean;
|
|
1842
1853
|
value: () => string | null;
|
|
1843
1854
|
disabled: () => string | null;
|
|
1844
1855
|
role: () => string | null;
|
|
1845
|
-
id: () => string;
|
|
1846
1856
|
label: () => string | null | undefined;
|
|
1847
|
-
title: () => string | null | undefined;
|
|
1848
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
1849
|
-
highlight: boolean;
|
|
1850
|
-
} | undefined) => string;
|
|
1851
1857
|
getId: () => string;
|
|
1852
1858
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1853
1859
|
getOwnerDocument: () => Document;
|
|
1854
1860
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1855
1861
|
getTagName: () => string;
|
|
1856
|
-
tagName: () => string;
|
|
1857
1862
|
typeIn: (text: string) => Promise<void>;
|
|
1858
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1859
1863
|
getDOMNode: () => Element;
|
|
1860
1864
|
node: () => Element;
|
|
1861
1865
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1863,9 +1867,8 @@ export declare const PaginationLocator: {
|
|
|
1863
1867
|
} | undefined) => void;
|
|
1864
1868
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
1865
1869
|
getTextContent: () => string | null;
|
|
1866
|
-
getParentNode: () =>
|
|
1867
|
-
parent: () =>
|
|
1868
|
-
getBoundingClientRect: () => DOMRect;
|
|
1870
|
+
getParentNode: () => ParentNode | null;
|
|
1871
|
+
parent: () => ParentNode | null;
|
|
1869
1872
|
rect: () => DOMRect;
|
|
1870
1873
|
hasClass: (classname: string) => boolean;
|
|
1871
1874
|
containsFocus: () => boolean;
|
|
@@ -1877,19 +1880,17 @@ export declare const PaginationLocator: {
|
|
|
1877
1880
|
exists: () => boolean;
|
|
1878
1881
|
text: () => string | null;
|
|
1879
1882
|
empty: () => boolean;
|
|
1880
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1881
1883
|
descendants: (selector: string) => Element[];
|
|
1882
|
-
ancestors: (selector: string) =>
|
|
1884
|
+
ancestors: (selector: string) => ParentNode[];
|
|
1883
1885
|
attribute: (qualifiedName: string) => string | null;
|
|
1884
1886
|
style: (property: string) => string;
|
|
1885
1887
|
classNames: () => string[];
|
|
1886
|
-
matches: (selector: string | undefined) => boolean;
|
|
1887
1888
|
checked: () => any;
|
|
1888
1889
|
selected: () => any;
|
|
1889
1890
|
readonly: () => any;
|
|
1890
|
-
|
|
1891
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
1891
|
+
parents: (selector: string) => ParentNode[];
|
|
1892
1892
|
} & {
|
|
1893
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1893
1894
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1894
1895
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1895
1896
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1927,7 +1928,6 @@ export declare const PaginationLocator: {
|
|
|
1927
1928
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1928
1929
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1929
1930
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1930
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1931
1931
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1932
1932
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1933
1933
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1977,24 +1977,28 @@ export declare const PaginationLocator: {
|
|
|
1977
1977
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
1978
1978
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
1979
1979
|
} & {
|
|
1980
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
1981
|
+
highlight: boolean;
|
|
1982
|
+
} | undefined) => string;
|
|
1983
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1984
|
+
children: (selector: string) => Element[];
|
|
1985
|
+
title: () => string | null | undefined;
|
|
1986
|
+
id: () => string;
|
|
1987
|
+
tagName: () => string;
|
|
1988
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1989
|
+
getBoundingClientRect: () => DOMRect;
|
|
1990
|
+
matches: (selector: string | undefined) => boolean;
|
|
1980
1991
|
visible: () => boolean;
|
|
1981
1992
|
value: () => string | null;
|
|
1982
1993
|
disabled: () => string | null;
|
|
1983
1994
|
role: () => string | null;
|
|
1984
|
-
id: () => string;
|
|
1985
1995
|
label: () => string | null | undefined;
|
|
1986
|
-
title: () => string | null | undefined;
|
|
1987
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
1988
|
-
highlight: boolean;
|
|
1989
|
-
} | undefined) => string;
|
|
1990
1996
|
getId: () => string;
|
|
1991
1997
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1992
1998
|
getOwnerDocument: () => Document;
|
|
1993
1999
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1994
2000
|
getTagName: () => string;
|
|
1995
|
-
tagName: () => string;
|
|
1996
2001
|
typeIn: (text: string) => Promise<void>;
|
|
1997
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1998
2002
|
getDOMNode: () => Element;
|
|
1999
2003
|
node: () => Element;
|
|
2000
2004
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -2002,9 +2006,8 @@ export declare const PaginationLocator: {
|
|
|
2002
2006
|
} | undefined) => void;
|
|
2003
2007
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
2004
2008
|
getTextContent: () => string | null;
|
|
2005
|
-
getParentNode: () =>
|
|
2006
|
-
parent: () =>
|
|
2007
|
-
getBoundingClientRect: () => DOMRect;
|
|
2009
|
+
getParentNode: () => ParentNode | null;
|
|
2010
|
+
parent: () => ParentNode | null;
|
|
2008
2011
|
rect: () => DOMRect;
|
|
2009
2012
|
hasClass: (classname: string) => boolean;
|
|
2010
2013
|
containsFocus: () => boolean;
|
|
@@ -2016,19 +2019,17 @@ export declare const PaginationLocator: {
|
|
|
2016
2019
|
exists: () => boolean;
|
|
2017
2020
|
text: () => string | null;
|
|
2018
2021
|
empty: () => boolean;
|
|
2019
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2020
2022
|
descendants: (selector: string) => Element[];
|
|
2021
|
-
ancestors: (selector: string) =>
|
|
2023
|
+
ancestors: (selector: string) => ParentNode[];
|
|
2022
2024
|
attribute: (qualifiedName: string) => string | null;
|
|
2023
2025
|
style: (property: string) => string;
|
|
2024
2026
|
classNames: () => string[];
|
|
2025
|
-
matches: (selector: string | undefined) => boolean;
|
|
2026
2027
|
checked: () => any;
|
|
2027
2028
|
selected: () => any;
|
|
2028
2029
|
readonly: () => any;
|
|
2029
|
-
|
|
2030
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
2030
|
+
parents: (selector: string) => ParentNode[];
|
|
2031
2031
|
} & {
|
|
2032
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2032
2033
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2033
2034
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2034
2035
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2066,7 +2067,6 @@ export declare const PaginationLocator: {
|
|
|
2066
2067
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2067
2068
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2068
2069
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2069
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2070
2070
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2071
2071
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2072
2072
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2120,24 +2120,28 @@ export declare const PaginationLocator: {
|
|
|
2120
2120
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
2121
2121
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
2122
2122
|
} & {
|
|
2123
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
2124
|
+
highlight: boolean;
|
|
2125
|
+
} | undefined) => string;
|
|
2126
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2127
|
+
children: (selector: string) => Element[];
|
|
2128
|
+
title: () => string | null | undefined;
|
|
2129
|
+
id: () => string;
|
|
2130
|
+
tagName: () => string;
|
|
2131
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
2132
|
+
getBoundingClientRect: () => DOMRect;
|
|
2133
|
+
matches: (selector: string | undefined) => boolean;
|
|
2123
2134
|
visible: () => boolean;
|
|
2124
2135
|
value: () => string | null;
|
|
2125
2136
|
disabled: () => string | null;
|
|
2126
2137
|
role: () => string | null;
|
|
2127
|
-
id: () => string;
|
|
2128
2138
|
label: () => string | null | undefined;
|
|
2129
|
-
title: () => string | null | undefined;
|
|
2130
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
2131
|
-
highlight: boolean;
|
|
2132
|
-
} | undefined) => string;
|
|
2133
2139
|
getId: () => string;
|
|
2134
2140
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
2135
2141
|
getOwnerDocument: () => Document;
|
|
2136
2142
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
2137
2143
|
getTagName: () => string;
|
|
2138
|
-
tagName: () => string;
|
|
2139
2144
|
typeIn: (text: string) => Promise<void>;
|
|
2140
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
2141
2145
|
getDOMNode: () => Element;
|
|
2142
2146
|
node: () => Element;
|
|
2143
2147
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -2145,9 +2149,8 @@ export declare const PaginationLocator: {
|
|
|
2145
2149
|
} | undefined) => void;
|
|
2146
2150
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
2147
2151
|
getTextContent: () => string | null;
|
|
2148
|
-
getParentNode: () =>
|
|
2149
|
-
parent: () =>
|
|
2150
|
-
getBoundingClientRect: () => DOMRect;
|
|
2152
|
+
getParentNode: () => ParentNode | null;
|
|
2153
|
+
parent: () => ParentNode | null;
|
|
2151
2154
|
rect: () => DOMRect;
|
|
2152
2155
|
hasClass: (classname: string) => boolean;
|
|
2153
2156
|
containsFocus: () => boolean;
|
|
@@ -2159,19 +2162,17 @@ export declare const PaginationLocator: {
|
|
|
2159
2162
|
exists: () => boolean;
|
|
2160
2163
|
text: () => string | null;
|
|
2161
2164
|
empty: () => boolean;
|
|
2162
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2163
2165
|
descendants: (selector: string) => Element[];
|
|
2164
|
-
ancestors: (selector: string) =>
|
|
2166
|
+
ancestors: (selector: string) => ParentNode[];
|
|
2165
2167
|
attribute: (qualifiedName: string) => string | null;
|
|
2166
2168
|
style: (property: string) => string;
|
|
2167
2169
|
classNames: () => string[];
|
|
2168
|
-
matches: (selector: string | undefined) => boolean;
|
|
2169
2170
|
checked: () => any;
|
|
2170
2171
|
selected: () => any;
|
|
2171
2172
|
readonly: () => any;
|
|
2172
|
-
|
|
2173
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
2173
|
+
parents: (selector: string) => ParentNode[];
|
|
2174
2174
|
} & {
|
|
2175
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2175
2176
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2176
2177
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2177
2178
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2209,7 +2210,6 @@ export declare const PaginationLocator: {
|
|
|
2209
2210
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2210
2211
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2211
2212
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2212
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2213
2213
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2214
2214
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2215
2215
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2259,24 +2259,28 @@ export declare const PaginationLocator: {
|
|
|
2259
2259
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
2260
2260
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
2261
2261
|
} & {
|
|
2262
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
2263
|
+
highlight: boolean;
|
|
2264
|
+
} | undefined) => string;
|
|
2265
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2266
|
+
children: (selector: string) => Element[];
|
|
2267
|
+
title: () => string | null | undefined;
|
|
2268
|
+
id: () => string;
|
|
2269
|
+
tagName: () => string;
|
|
2270
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
2271
|
+
getBoundingClientRect: () => DOMRect;
|
|
2272
|
+
matches: (selector: string | undefined) => boolean;
|
|
2262
2273
|
visible: () => boolean;
|
|
2263
2274
|
value: () => string | null;
|
|
2264
2275
|
disabled: () => string | null;
|
|
2265
2276
|
role: () => string | null;
|
|
2266
|
-
id: () => string;
|
|
2267
2277
|
label: () => string | null | undefined;
|
|
2268
|
-
title: () => string | null | undefined;
|
|
2269
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
2270
|
-
highlight: boolean;
|
|
2271
|
-
} | undefined) => string;
|
|
2272
2278
|
getId: () => string;
|
|
2273
2279
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
2274
2280
|
getOwnerDocument: () => Document;
|
|
2275
2281
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
2276
2282
|
getTagName: () => string;
|
|
2277
|
-
tagName: () => string;
|
|
2278
2283
|
typeIn: (text: string) => Promise<void>;
|
|
2279
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
2280
2284
|
getDOMNode: () => Element;
|
|
2281
2285
|
node: () => Element;
|
|
2282
2286
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -2284,9 +2288,8 @@ export declare const PaginationLocator: {
|
|
|
2284
2288
|
} | undefined) => void;
|
|
2285
2289
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
2286
2290
|
getTextContent: () => string | null;
|
|
2287
|
-
getParentNode: () =>
|
|
2288
|
-
parent: () =>
|
|
2289
|
-
getBoundingClientRect: () => DOMRect;
|
|
2291
|
+
getParentNode: () => ParentNode | null;
|
|
2292
|
+
parent: () => ParentNode | null;
|
|
2290
2293
|
rect: () => DOMRect;
|
|
2291
2294
|
hasClass: (classname: string) => boolean;
|
|
2292
2295
|
containsFocus: () => boolean;
|
|
@@ -2298,19 +2301,17 @@ export declare const PaginationLocator: {
|
|
|
2298
2301
|
exists: () => boolean;
|
|
2299
2302
|
text: () => string | null;
|
|
2300
2303
|
empty: () => boolean;
|
|
2301
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2302
2304
|
descendants: (selector: string) => Element[];
|
|
2303
|
-
ancestors: (selector: string) =>
|
|
2305
|
+
ancestors: (selector: string) => ParentNode[];
|
|
2304
2306
|
attribute: (qualifiedName: string) => string | null;
|
|
2305
2307
|
style: (property: string) => string;
|
|
2306
2308
|
classNames: () => string[];
|
|
2307
|
-
matches: (selector: string | undefined) => boolean;
|
|
2308
2309
|
checked: () => any;
|
|
2309
2310
|
selected: () => any;
|
|
2310
2311
|
readonly: () => any;
|
|
2311
|
-
|
|
2312
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
2312
|
+
parents: (selector: string) => ParentNode[];
|
|
2313
2313
|
} & {
|
|
2314
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2314
2315
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2315
2316
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2316
2317
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2348,7 +2349,6 @@ export declare const PaginationLocator: {
|
|
|
2348
2349
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2349
2350
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2350
2351
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2351
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2352
2352
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2353
2353
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2354
2354
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2398,24 +2398,28 @@ export declare const PaginationLocator: {
|
|
|
2398
2398
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
2399
2399
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
2400
2400
|
} & {
|
|
2401
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
2402
|
+
highlight: boolean;
|
|
2403
|
+
} | undefined) => string;
|
|
2404
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2405
|
+
children: (selector: string) => Element[];
|
|
2406
|
+
title: () => string | null | undefined;
|
|
2407
|
+
id: () => string;
|
|
2408
|
+
tagName: () => string;
|
|
2409
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
2410
|
+
getBoundingClientRect: () => DOMRect;
|
|
2411
|
+
matches: (selector: string | undefined) => boolean;
|
|
2401
2412
|
visible: () => boolean;
|
|
2402
2413
|
value: () => string | null;
|
|
2403
2414
|
disabled: () => string | null;
|
|
2404
2415
|
role: () => string | null;
|
|
2405
|
-
id: () => string;
|
|
2406
2416
|
label: () => string | null | undefined;
|
|
2407
|
-
title: () => string | null | undefined;
|
|
2408
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
2409
|
-
highlight: boolean;
|
|
2410
|
-
} | undefined) => string;
|
|
2411
2417
|
getId: () => string;
|
|
2412
2418
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
2413
2419
|
getOwnerDocument: () => Document;
|
|
2414
2420
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
2415
2421
|
getTagName: () => string;
|
|
2416
|
-
tagName: () => string;
|
|
2417
2422
|
typeIn: (text: string) => Promise<void>;
|
|
2418
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
2419
2423
|
getDOMNode: () => Element;
|
|
2420
2424
|
node: () => Element;
|
|
2421
2425
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -2423,9 +2427,8 @@ export declare const PaginationLocator: {
|
|
|
2423
2427
|
} | undefined) => void;
|
|
2424
2428
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
2425
2429
|
getTextContent: () => string | null;
|
|
2426
|
-
getParentNode: () =>
|
|
2427
|
-
parent: () =>
|
|
2428
|
-
getBoundingClientRect: () => DOMRect;
|
|
2430
|
+
getParentNode: () => ParentNode | null;
|
|
2431
|
+
parent: () => ParentNode | null;
|
|
2429
2432
|
rect: () => DOMRect;
|
|
2430
2433
|
hasClass: (classname: string) => boolean;
|
|
2431
2434
|
containsFocus: () => boolean;
|
|
@@ -2437,19 +2440,17 @@ export declare const PaginationLocator: {
|
|
|
2437
2440
|
exists: () => boolean;
|
|
2438
2441
|
text: () => string | null;
|
|
2439
2442
|
empty: () => boolean;
|
|
2440
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2441
2443
|
descendants: (selector: string) => Element[];
|
|
2442
|
-
ancestors: (selector: string) =>
|
|
2444
|
+
ancestors: (selector: string) => ParentNode[];
|
|
2443
2445
|
attribute: (qualifiedName: string) => string | null;
|
|
2444
2446
|
style: (property: string) => string;
|
|
2445
2447
|
classNames: () => string[];
|
|
2446
|
-
matches: (selector: string | undefined) => boolean;
|
|
2447
2448
|
checked: () => any;
|
|
2448
2449
|
selected: () => any;
|
|
2449
2450
|
readonly: () => any;
|
|
2450
|
-
|
|
2451
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
2451
|
+
parents: (selector: string) => ParentNode[];
|
|
2452
2452
|
} & {
|
|
2453
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2453
2454
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2454
2455
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2455
2456
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2487,7 +2488,6 @@ export declare const PaginationLocator: {
|
|
|
2487
2488
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2488
2489
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2489
2490
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2490
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2491
2491
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2492
2492
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2493
2493
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2537,24 +2537,28 @@ export declare const PaginationLocator: {
|
|
|
2537
2537
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
2538
2538
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
2539
2539
|
} & {
|
|
2540
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
2541
|
+
highlight: boolean;
|
|
2542
|
+
} | undefined) => string;
|
|
2543
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2544
|
+
children: (selector: string) => Element[];
|
|
2545
|
+
title: () => string | null | undefined;
|
|
2546
|
+
id: () => string;
|
|
2547
|
+
tagName: () => string;
|
|
2548
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
2549
|
+
getBoundingClientRect: () => DOMRect;
|
|
2550
|
+
matches: (selector: string | undefined) => boolean;
|
|
2540
2551
|
visible: () => boolean;
|
|
2541
2552
|
value: () => string | null;
|
|
2542
2553
|
disabled: () => string | null;
|
|
2543
2554
|
role: () => string | null;
|
|
2544
|
-
id: () => string;
|
|
2545
2555
|
label: () => string | null | undefined;
|
|
2546
|
-
title: () => string | null | undefined;
|
|
2547
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
2548
|
-
highlight: boolean;
|
|
2549
|
-
} | undefined) => string;
|
|
2550
2556
|
getId: () => string;
|
|
2551
2557
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
2552
2558
|
getOwnerDocument: () => Document;
|
|
2553
2559
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
2554
2560
|
getTagName: () => string;
|
|
2555
|
-
tagName: () => string;
|
|
2556
2561
|
typeIn: (text: string) => Promise<void>;
|
|
2557
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
2558
2562
|
getDOMNode: () => Element;
|
|
2559
2563
|
node: () => Element;
|
|
2560
2564
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -2562,9 +2566,8 @@ export declare const PaginationLocator: {
|
|
|
2562
2566
|
} | undefined) => void;
|
|
2563
2567
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
2564
2568
|
getTextContent: () => string | null;
|
|
2565
|
-
getParentNode: () =>
|
|
2566
|
-
parent: () =>
|
|
2567
|
-
getBoundingClientRect: () => DOMRect;
|
|
2569
|
+
getParentNode: () => ParentNode | null;
|
|
2570
|
+
parent: () => ParentNode | null;
|
|
2568
2571
|
rect: () => DOMRect;
|
|
2569
2572
|
hasClass: (classname: string) => boolean;
|
|
2570
2573
|
containsFocus: () => boolean;
|
|
@@ -2576,19 +2579,17 @@ export declare const PaginationLocator: {
|
|
|
2576
2579
|
exists: () => boolean;
|
|
2577
2580
|
text: () => string | null;
|
|
2578
2581
|
empty: () => boolean;
|
|
2579
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2580
2582
|
descendants: (selector: string) => Element[];
|
|
2581
|
-
ancestors: (selector: string) =>
|
|
2583
|
+
ancestors: (selector: string) => ParentNode[];
|
|
2582
2584
|
attribute: (qualifiedName: string) => string | null;
|
|
2583
2585
|
style: (property: string) => string;
|
|
2584
2586
|
classNames: () => string[];
|
|
2585
|
-
matches: (selector: string | undefined) => boolean;
|
|
2586
2587
|
checked: () => any;
|
|
2587
2588
|
selected: () => any;
|
|
2588
2589
|
readonly: () => any;
|
|
2589
|
-
|
|
2590
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
2590
|
+
parents: (selector: string) => ParentNode[];
|
|
2591
2591
|
} & {
|
|
2592
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2592
2593
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2593
2594
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2594
2595
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2626,7 +2627,6 @@ export declare const PaginationLocator: {
|
|
|
2626
2627
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2627
2628
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2628
2629
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2629
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2630
2630
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2631
2631
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2632
2632
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|