@instructure/ui-navigation 8.10.2 → 8.10.3-snapshot.10
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/LICENSE.md +27 -0
- package/package.json +25 -24
- package/src/Navigation/NavigationItem/index.tsx +1 -1
- package/types/AppNav/AppNavLocator.d.ts +224 -224
- package/types/AppNav/Item/AppNavItemLocator.d.ts +64 -64
- package/types/Navigation/NavigationItem/NavigationItemLocator.d.ts +64 -64
- package/types/Navigation/NavigationLocator.d.ts +224 -224
|
@@ -19,24 +19,28 @@ export declare const AppNavItemLocator: {
|
|
|
19
19
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
20
20
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
21
21
|
} & {
|
|
22
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
23
|
+
highlight: boolean;
|
|
24
|
+
} | undefined) => string;
|
|
25
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
26
|
+
children: (selector: string) => Element[];
|
|
27
|
+
title: () => string | null | undefined;
|
|
28
|
+
id: () => string;
|
|
29
|
+
tagName: () => string;
|
|
30
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
31
|
+
getBoundingClientRect: () => DOMRect;
|
|
32
|
+
matches: (selector: string | undefined) => boolean;
|
|
22
33
|
visible: () => boolean;
|
|
23
34
|
value: () => string | null;
|
|
24
35
|
disabled: () => string | null;
|
|
25
36
|
role: () => string | null;
|
|
26
|
-
id: () => string;
|
|
27
37
|
label: () => string | null | undefined;
|
|
28
|
-
title: () => string | null | undefined;
|
|
29
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
30
|
-
highlight: boolean;
|
|
31
|
-
} | undefined) => string;
|
|
32
38
|
getId: () => string;
|
|
33
39
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
34
40
|
getOwnerDocument: () => Document;
|
|
35
41
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
36
42
|
getTagName: () => string;
|
|
37
|
-
tagName: () => string;
|
|
38
43
|
typeIn: (text: string) => Promise<void>;
|
|
39
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
40
44
|
getDOMNode: () => Element;
|
|
41
45
|
node: () => Element;
|
|
42
46
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -44,9 +48,8 @@ export declare const AppNavItemLocator: {
|
|
|
44
48
|
} | undefined) => void;
|
|
45
49
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
46
50
|
getTextContent: () => string | null;
|
|
47
|
-
getParentNode: () =>
|
|
48
|
-
parent: () =>
|
|
49
|
-
getBoundingClientRect: () => DOMRect;
|
|
51
|
+
getParentNode: () => ParentNode | null;
|
|
52
|
+
parent: () => ParentNode | null;
|
|
50
53
|
rect: () => DOMRect;
|
|
51
54
|
hasClass: (classname: string) => boolean;
|
|
52
55
|
containsFocus: () => boolean;
|
|
@@ -58,19 +61,17 @@ export declare const AppNavItemLocator: {
|
|
|
58
61
|
exists: () => boolean;
|
|
59
62
|
text: () => string | null;
|
|
60
63
|
empty: () => boolean;
|
|
61
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
62
64
|
descendants: (selector: string) => Element[];
|
|
63
|
-
ancestors: (selector: string) =>
|
|
65
|
+
ancestors: (selector: string) => ParentNode[];
|
|
64
66
|
attribute: (qualifiedName: string) => string | null;
|
|
65
67
|
style: (property: string) => string;
|
|
66
68
|
classNames: () => string[];
|
|
67
|
-
matches: (selector: string | undefined) => boolean;
|
|
68
69
|
checked: () => any;
|
|
69
70
|
selected: () => any;
|
|
70
71
|
readonly: () => any;
|
|
71
|
-
|
|
72
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
72
|
+
parents: (selector: string) => ParentNode[];
|
|
73
73
|
} & {
|
|
74
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
74
75
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
75
76
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
76
77
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -108,7 +109,6 @@ export declare const AppNavItemLocator: {
|
|
|
108
109
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
109
110
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
110
111
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
111
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
112
112
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
113
113
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
114
114
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -158,24 +158,28 @@ export declare const AppNavItemLocator: {
|
|
|
158
158
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
159
159
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
160
160
|
} & {
|
|
161
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
162
|
+
highlight: boolean;
|
|
163
|
+
} | undefined) => string;
|
|
164
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
165
|
+
children: (selector: string) => Element[];
|
|
166
|
+
title: () => string | null | undefined;
|
|
167
|
+
id: () => string;
|
|
168
|
+
tagName: () => string;
|
|
169
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
170
|
+
getBoundingClientRect: () => DOMRect;
|
|
171
|
+
matches: (selector: string | undefined) => boolean;
|
|
161
172
|
visible: () => boolean;
|
|
162
173
|
value: () => string | null;
|
|
163
174
|
disabled: () => string | null;
|
|
164
175
|
role: () => string | null;
|
|
165
|
-
id: () => string;
|
|
166
176
|
label: () => string | null | undefined;
|
|
167
|
-
title: () => string | null | undefined;
|
|
168
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
169
|
-
highlight: boolean;
|
|
170
|
-
} | undefined) => string;
|
|
171
177
|
getId: () => string;
|
|
172
178
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
173
179
|
getOwnerDocument: () => Document;
|
|
174
180
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
175
181
|
getTagName: () => string;
|
|
176
|
-
tagName: () => string;
|
|
177
182
|
typeIn: (text: string) => Promise<void>;
|
|
178
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
179
183
|
getDOMNode: () => Element;
|
|
180
184
|
node: () => Element;
|
|
181
185
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -183,9 +187,8 @@ export declare const AppNavItemLocator: {
|
|
|
183
187
|
} | undefined) => void;
|
|
184
188
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
185
189
|
getTextContent: () => string | null;
|
|
186
|
-
getParentNode: () =>
|
|
187
|
-
parent: () =>
|
|
188
|
-
getBoundingClientRect: () => DOMRect;
|
|
190
|
+
getParentNode: () => ParentNode | null;
|
|
191
|
+
parent: () => ParentNode | null;
|
|
189
192
|
rect: () => DOMRect;
|
|
190
193
|
hasClass: (classname: string) => boolean;
|
|
191
194
|
containsFocus: () => boolean;
|
|
@@ -197,19 +200,17 @@ export declare const AppNavItemLocator: {
|
|
|
197
200
|
exists: () => boolean;
|
|
198
201
|
text: () => string | null;
|
|
199
202
|
empty: () => boolean;
|
|
200
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
201
203
|
descendants: (selector: string) => Element[];
|
|
202
|
-
ancestors: (selector: string) =>
|
|
204
|
+
ancestors: (selector: string) => ParentNode[];
|
|
203
205
|
attribute: (qualifiedName: string) => string | null;
|
|
204
206
|
style: (property: string) => string;
|
|
205
207
|
classNames: () => string[];
|
|
206
|
-
matches: (selector: string | undefined) => boolean;
|
|
207
208
|
checked: () => any;
|
|
208
209
|
selected: () => any;
|
|
209
210
|
readonly: () => any;
|
|
210
|
-
|
|
211
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
211
|
+
parents: (selector: string) => ParentNode[];
|
|
212
212
|
} & {
|
|
213
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
213
214
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
214
215
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
215
216
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -247,7 +248,6 @@ export declare const AppNavItemLocator: {
|
|
|
247
248
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
248
249
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
249
250
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
250
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
251
251
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
252
252
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
253
253
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -297,24 +297,28 @@ export declare const AppNavItemLocator: {
|
|
|
297
297
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
298
298
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
299
299
|
} & {
|
|
300
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
301
|
+
highlight: boolean;
|
|
302
|
+
} | undefined) => string;
|
|
303
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
304
|
+
children: (selector: string) => Element[];
|
|
305
|
+
title: () => string | null | undefined;
|
|
306
|
+
id: () => string;
|
|
307
|
+
tagName: () => string;
|
|
308
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
309
|
+
getBoundingClientRect: () => DOMRect;
|
|
310
|
+
matches: (selector: string | undefined) => boolean;
|
|
300
311
|
visible: () => boolean;
|
|
301
312
|
value: () => string | null;
|
|
302
313
|
disabled: () => string | null;
|
|
303
314
|
role: () => string | null;
|
|
304
|
-
id: () => string;
|
|
305
315
|
label: () => string | null | undefined;
|
|
306
|
-
title: () => string | null | undefined;
|
|
307
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
308
|
-
highlight: boolean;
|
|
309
|
-
} | undefined) => string;
|
|
310
316
|
getId: () => string;
|
|
311
317
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
312
318
|
getOwnerDocument: () => Document;
|
|
313
319
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
314
320
|
getTagName: () => string;
|
|
315
|
-
tagName: () => string;
|
|
316
321
|
typeIn: (text: string) => Promise<void>;
|
|
317
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
318
322
|
getDOMNode: () => Element;
|
|
319
323
|
node: () => Element;
|
|
320
324
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -322,9 +326,8 @@ export declare const AppNavItemLocator: {
|
|
|
322
326
|
} | undefined) => void;
|
|
323
327
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
324
328
|
getTextContent: () => string | null;
|
|
325
|
-
getParentNode: () =>
|
|
326
|
-
parent: () =>
|
|
327
|
-
getBoundingClientRect: () => DOMRect;
|
|
329
|
+
getParentNode: () => ParentNode | null;
|
|
330
|
+
parent: () => ParentNode | null;
|
|
328
331
|
rect: () => DOMRect;
|
|
329
332
|
hasClass: (classname: string) => boolean;
|
|
330
333
|
containsFocus: () => boolean;
|
|
@@ -336,19 +339,17 @@ export declare const AppNavItemLocator: {
|
|
|
336
339
|
exists: () => boolean;
|
|
337
340
|
text: () => string | null;
|
|
338
341
|
empty: () => boolean;
|
|
339
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
340
342
|
descendants: (selector: string) => Element[];
|
|
341
|
-
ancestors: (selector: string) =>
|
|
343
|
+
ancestors: (selector: string) => ParentNode[];
|
|
342
344
|
attribute: (qualifiedName: string) => string | null;
|
|
343
345
|
style: (property: string) => string;
|
|
344
346
|
classNames: () => string[];
|
|
345
|
-
matches: (selector: string | undefined) => boolean;
|
|
346
347
|
checked: () => any;
|
|
347
348
|
selected: () => any;
|
|
348
349
|
readonly: () => any;
|
|
349
|
-
|
|
350
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
350
|
+
parents: (selector: string) => ParentNode[];
|
|
351
351
|
} & {
|
|
352
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
352
353
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
353
354
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
354
355
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -386,7 +387,6 @@ export declare const AppNavItemLocator: {
|
|
|
386
387
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
387
388
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
388
389
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
389
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
390
390
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
391
391
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
392
392
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -436,24 +436,28 @@ export declare const AppNavItemLocator: {
|
|
|
436
436
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
437
437
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
438
438
|
} & {
|
|
439
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
440
|
+
highlight: boolean;
|
|
441
|
+
} | undefined) => string;
|
|
442
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
443
|
+
children: (selector: string) => Element[];
|
|
444
|
+
title: () => string | null | undefined;
|
|
445
|
+
id: () => string;
|
|
446
|
+
tagName: () => string;
|
|
447
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
448
|
+
getBoundingClientRect: () => DOMRect;
|
|
449
|
+
matches: (selector: string | undefined) => boolean;
|
|
439
450
|
visible: () => boolean;
|
|
440
451
|
value: () => string | null;
|
|
441
452
|
disabled: () => string | null;
|
|
442
453
|
role: () => string | null;
|
|
443
|
-
id: () => string;
|
|
444
454
|
label: () => string | null | undefined;
|
|
445
|
-
title: () => string | null | undefined;
|
|
446
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
447
|
-
highlight: boolean;
|
|
448
|
-
} | undefined) => string;
|
|
449
455
|
getId: () => string;
|
|
450
456
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
451
457
|
getOwnerDocument: () => Document;
|
|
452
458
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
453
459
|
getTagName: () => string;
|
|
454
|
-
tagName: () => string;
|
|
455
460
|
typeIn: (text: string) => Promise<void>;
|
|
456
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
457
461
|
getDOMNode: () => Element;
|
|
458
462
|
node: () => Element;
|
|
459
463
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -461,9 +465,8 @@ export declare const AppNavItemLocator: {
|
|
|
461
465
|
} | undefined) => void;
|
|
462
466
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
463
467
|
getTextContent: () => string | null;
|
|
464
|
-
getParentNode: () =>
|
|
465
|
-
parent: () =>
|
|
466
|
-
getBoundingClientRect: () => DOMRect;
|
|
468
|
+
getParentNode: () => ParentNode | null;
|
|
469
|
+
parent: () => ParentNode | null;
|
|
467
470
|
rect: () => DOMRect;
|
|
468
471
|
hasClass: (classname: string) => boolean;
|
|
469
472
|
containsFocus: () => boolean;
|
|
@@ -475,19 +478,17 @@ export declare const AppNavItemLocator: {
|
|
|
475
478
|
exists: () => boolean;
|
|
476
479
|
text: () => string | null;
|
|
477
480
|
empty: () => boolean;
|
|
478
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
479
481
|
descendants: (selector: string) => Element[];
|
|
480
|
-
ancestors: (selector: string) =>
|
|
482
|
+
ancestors: (selector: string) => ParentNode[];
|
|
481
483
|
attribute: (qualifiedName: string) => string | null;
|
|
482
484
|
style: (property: string) => string;
|
|
483
485
|
classNames: () => string[];
|
|
484
|
-
matches: (selector: string | undefined) => boolean;
|
|
485
486
|
checked: () => any;
|
|
486
487
|
selected: () => any;
|
|
487
488
|
readonly: () => any;
|
|
488
|
-
|
|
489
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
489
|
+
parents: (selector: string) => ParentNode[];
|
|
490
490
|
} & {
|
|
491
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
491
492
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
492
493
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
493
494
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -525,7 +526,6 @@ export declare const AppNavItemLocator: {
|
|
|
525
526
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
526
527
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
527
528
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
528
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
529
529
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
530
530
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
531
531
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -21,24 +21,28 @@ export declare const NavigationItemLocator: {
|
|
|
21
21
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
22
22
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
23
23
|
} & {
|
|
24
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
25
|
+
highlight: boolean;
|
|
26
|
+
} | undefined) => string;
|
|
27
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
28
|
+
children: (selector: string) => Element[];
|
|
29
|
+
title: () => string | null | undefined;
|
|
30
|
+
id: () => string;
|
|
31
|
+
tagName: () => string;
|
|
32
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
33
|
+
getBoundingClientRect: () => DOMRect;
|
|
34
|
+
matches: (selector: string | undefined) => boolean;
|
|
24
35
|
visible: () => boolean;
|
|
25
36
|
value: () => string | null;
|
|
26
37
|
disabled: () => string | null;
|
|
27
38
|
role: () => string | null;
|
|
28
|
-
id: () => string;
|
|
29
39
|
label: () => string | null | undefined;
|
|
30
|
-
title: () => string | null | undefined;
|
|
31
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
32
|
-
highlight: boolean;
|
|
33
|
-
} | undefined) => string;
|
|
34
40
|
getId: () => string;
|
|
35
41
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
36
42
|
getOwnerDocument: () => Document;
|
|
37
43
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
38
44
|
getTagName: () => string;
|
|
39
|
-
tagName: () => string;
|
|
40
45
|
typeIn: (text: string) => Promise<void>;
|
|
41
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
42
46
|
getDOMNode: () => Element;
|
|
43
47
|
node: () => Element;
|
|
44
48
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -46,9 +50,8 @@ export declare const NavigationItemLocator: {
|
|
|
46
50
|
} | undefined) => void;
|
|
47
51
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
48
52
|
getTextContent: () => string | null;
|
|
49
|
-
getParentNode: () =>
|
|
50
|
-
parent: () =>
|
|
51
|
-
getBoundingClientRect: () => DOMRect;
|
|
53
|
+
getParentNode: () => ParentNode | null;
|
|
54
|
+
parent: () => ParentNode | null;
|
|
52
55
|
rect: () => DOMRect;
|
|
53
56
|
hasClass: (classname: string) => boolean;
|
|
54
57
|
containsFocus: () => boolean;
|
|
@@ -60,19 +63,17 @@ export declare const NavigationItemLocator: {
|
|
|
60
63
|
exists: () => boolean;
|
|
61
64
|
text: () => string | null;
|
|
62
65
|
empty: () => boolean;
|
|
63
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
64
66
|
descendants: (selector: string) => Element[];
|
|
65
|
-
ancestors: (selector: string) =>
|
|
67
|
+
ancestors: (selector: string) => ParentNode[];
|
|
66
68
|
attribute: (qualifiedName: string) => string | null;
|
|
67
69
|
style: (property: string) => string;
|
|
68
70
|
classNames: () => string[];
|
|
69
|
-
matches: (selector: string | undefined) => boolean;
|
|
70
71
|
checked: () => any;
|
|
71
72
|
selected: () => any;
|
|
72
73
|
readonly: () => any;
|
|
73
|
-
|
|
74
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
74
|
+
parents: (selector: string) => ParentNode[];
|
|
75
75
|
} & {
|
|
76
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
76
77
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
77
78
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
78
79
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -110,7 +111,6 @@ export declare const NavigationItemLocator: {
|
|
|
110
111
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
111
112
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
112
113
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
113
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
114
114
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
115
115
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
116
116
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -162,24 +162,28 @@ export declare const NavigationItemLocator: {
|
|
|
162
162
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
163
163
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
164
164
|
} & {
|
|
165
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
166
|
+
highlight: boolean;
|
|
167
|
+
} | undefined) => string;
|
|
168
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
169
|
+
children: (selector: string) => Element[];
|
|
170
|
+
title: () => string | null | undefined;
|
|
171
|
+
id: () => string;
|
|
172
|
+
tagName: () => string;
|
|
173
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
174
|
+
getBoundingClientRect: () => DOMRect;
|
|
175
|
+
matches: (selector: string | undefined) => boolean;
|
|
165
176
|
visible: () => boolean;
|
|
166
177
|
value: () => string | null;
|
|
167
178
|
disabled: () => string | null;
|
|
168
179
|
role: () => string | null;
|
|
169
|
-
id: () => string;
|
|
170
180
|
label: () => string | null | undefined;
|
|
171
|
-
title: () => string | null | undefined;
|
|
172
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
173
|
-
highlight: boolean;
|
|
174
|
-
} | undefined) => string;
|
|
175
181
|
getId: () => string;
|
|
176
182
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
177
183
|
getOwnerDocument: () => Document;
|
|
178
184
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
179
185
|
getTagName: () => string;
|
|
180
|
-
tagName: () => string;
|
|
181
186
|
typeIn: (text: string) => Promise<void>;
|
|
182
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
183
187
|
getDOMNode: () => Element;
|
|
184
188
|
node: () => Element;
|
|
185
189
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -187,9 +191,8 @@ export declare const NavigationItemLocator: {
|
|
|
187
191
|
} | undefined) => void;
|
|
188
192
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
189
193
|
getTextContent: () => string | null;
|
|
190
|
-
getParentNode: () =>
|
|
191
|
-
parent: () =>
|
|
192
|
-
getBoundingClientRect: () => DOMRect;
|
|
194
|
+
getParentNode: () => ParentNode | null;
|
|
195
|
+
parent: () => ParentNode | null;
|
|
193
196
|
rect: () => DOMRect;
|
|
194
197
|
hasClass: (classname: string) => boolean;
|
|
195
198
|
containsFocus: () => boolean;
|
|
@@ -201,19 +204,17 @@ export declare const NavigationItemLocator: {
|
|
|
201
204
|
exists: () => boolean;
|
|
202
205
|
text: () => string | null;
|
|
203
206
|
empty: () => boolean;
|
|
204
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
205
207
|
descendants: (selector: string) => Element[];
|
|
206
|
-
ancestors: (selector: string) =>
|
|
208
|
+
ancestors: (selector: string) => ParentNode[];
|
|
207
209
|
attribute: (qualifiedName: string) => string | null;
|
|
208
210
|
style: (property: string) => string;
|
|
209
211
|
classNames: () => string[];
|
|
210
|
-
matches: (selector: string | undefined) => boolean;
|
|
211
212
|
checked: () => any;
|
|
212
213
|
selected: () => any;
|
|
213
214
|
readonly: () => any;
|
|
214
|
-
|
|
215
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
215
|
+
parents: (selector: string) => ParentNode[];
|
|
216
216
|
} & {
|
|
217
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
217
218
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
218
219
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
219
220
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -251,7 +252,6 @@ export declare const NavigationItemLocator: {
|
|
|
251
252
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
252
253
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
253
254
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
254
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
255
255
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
256
256
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
257
257
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -303,24 +303,28 @@ export declare const NavigationItemLocator: {
|
|
|
303
303
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
304
304
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
305
305
|
} & {
|
|
306
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
307
|
+
highlight: boolean;
|
|
308
|
+
} | undefined) => string;
|
|
309
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
310
|
+
children: (selector: string) => Element[];
|
|
311
|
+
title: () => string | null | undefined;
|
|
312
|
+
id: () => string;
|
|
313
|
+
tagName: () => string;
|
|
314
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
315
|
+
getBoundingClientRect: () => DOMRect;
|
|
316
|
+
matches: (selector: string | undefined) => boolean;
|
|
306
317
|
visible: () => boolean;
|
|
307
318
|
value: () => string | null;
|
|
308
319
|
disabled: () => string | null;
|
|
309
320
|
role: () => string | null;
|
|
310
|
-
id: () => string;
|
|
311
321
|
label: () => string | null | undefined;
|
|
312
|
-
title: () => string | null | undefined;
|
|
313
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
314
|
-
highlight: boolean;
|
|
315
|
-
} | undefined) => string;
|
|
316
322
|
getId: () => string;
|
|
317
323
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
318
324
|
getOwnerDocument: () => Document;
|
|
319
325
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
320
326
|
getTagName: () => string;
|
|
321
|
-
tagName: () => string;
|
|
322
327
|
typeIn: (text: string) => Promise<void>;
|
|
323
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
324
328
|
getDOMNode: () => Element;
|
|
325
329
|
node: () => Element;
|
|
326
330
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -328,9 +332,8 @@ export declare const NavigationItemLocator: {
|
|
|
328
332
|
} | undefined) => void;
|
|
329
333
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
330
334
|
getTextContent: () => string | null;
|
|
331
|
-
getParentNode: () =>
|
|
332
|
-
parent: () =>
|
|
333
|
-
getBoundingClientRect: () => DOMRect;
|
|
335
|
+
getParentNode: () => ParentNode | null;
|
|
336
|
+
parent: () => ParentNode | null;
|
|
334
337
|
rect: () => DOMRect;
|
|
335
338
|
hasClass: (classname: string) => boolean;
|
|
336
339
|
containsFocus: () => boolean;
|
|
@@ -342,19 +345,17 @@ export declare const NavigationItemLocator: {
|
|
|
342
345
|
exists: () => boolean;
|
|
343
346
|
text: () => string | null;
|
|
344
347
|
empty: () => boolean;
|
|
345
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
346
348
|
descendants: (selector: string) => Element[];
|
|
347
|
-
ancestors: (selector: string) =>
|
|
349
|
+
ancestors: (selector: string) => ParentNode[];
|
|
348
350
|
attribute: (qualifiedName: string) => string | null;
|
|
349
351
|
style: (property: string) => string;
|
|
350
352
|
classNames: () => string[];
|
|
351
|
-
matches: (selector: string | undefined) => boolean;
|
|
352
353
|
checked: () => any;
|
|
353
354
|
selected: () => any;
|
|
354
355
|
readonly: () => any;
|
|
355
|
-
|
|
356
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
356
|
+
parents: (selector: string) => ParentNode[];
|
|
357
357
|
} & {
|
|
358
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
358
359
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
359
360
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
360
361
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -392,7 +393,6 @@ export declare const NavigationItemLocator: {
|
|
|
392
393
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
393
394
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
394
395
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
395
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
396
396
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
397
397
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
398
398
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -444,24 +444,28 @@ export declare const NavigationItemLocator: {
|
|
|
444
444
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
445
445
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
446
446
|
} & {
|
|
447
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
448
|
+
highlight: boolean;
|
|
449
|
+
} | undefined) => string;
|
|
450
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
451
|
+
children: (selector: string) => Element[];
|
|
452
|
+
title: () => string | null | undefined;
|
|
453
|
+
id: () => string;
|
|
454
|
+
tagName: () => string;
|
|
455
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
456
|
+
getBoundingClientRect: () => DOMRect;
|
|
457
|
+
matches: (selector: string | undefined) => boolean;
|
|
447
458
|
visible: () => boolean;
|
|
448
459
|
value: () => string | null;
|
|
449
460
|
disabled: () => string | null;
|
|
450
461
|
role: () => string | null;
|
|
451
|
-
id: () => string;
|
|
452
462
|
label: () => string | null | undefined;
|
|
453
|
-
title: () => string | null | undefined;
|
|
454
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
455
|
-
highlight: boolean;
|
|
456
|
-
} | undefined) => string;
|
|
457
463
|
getId: () => string;
|
|
458
464
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
459
465
|
getOwnerDocument: () => Document;
|
|
460
466
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
461
467
|
getTagName: () => string;
|
|
462
|
-
tagName: () => string;
|
|
463
468
|
typeIn: (text: string) => Promise<void>;
|
|
464
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
465
469
|
getDOMNode: () => Element;
|
|
466
470
|
node: () => Element;
|
|
467
471
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -469,9 +473,8 @@ export declare const NavigationItemLocator: {
|
|
|
469
473
|
} | undefined) => void;
|
|
470
474
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
471
475
|
getTextContent: () => string | null;
|
|
472
|
-
getParentNode: () =>
|
|
473
|
-
parent: () =>
|
|
474
|
-
getBoundingClientRect: () => DOMRect;
|
|
476
|
+
getParentNode: () => ParentNode | null;
|
|
477
|
+
parent: () => ParentNode | null;
|
|
475
478
|
rect: () => DOMRect;
|
|
476
479
|
hasClass: (classname: string) => boolean;
|
|
477
480
|
containsFocus: () => boolean;
|
|
@@ -483,19 +486,17 @@ export declare const NavigationItemLocator: {
|
|
|
483
486
|
exists: () => boolean;
|
|
484
487
|
text: () => string | null;
|
|
485
488
|
empty: () => boolean;
|
|
486
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
487
489
|
descendants: (selector: string) => Element[];
|
|
488
|
-
ancestors: (selector: string) =>
|
|
490
|
+
ancestors: (selector: string) => ParentNode[];
|
|
489
491
|
attribute: (qualifiedName: string) => string | null;
|
|
490
492
|
style: (property: string) => string;
|
|
491
493
|
classNames: () => string[];
|
|
492
|
-
matches: (selector: string | undefined) => boolean;
|
|
493
494
|
checked: () => any;
|
|
494
495
|
selected: () => any;
|
|
495
496
|
readonly: () => any;
|
|
496
|
-
|
|
497
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
497
|
+
parents: (selector: string) => ParentNode[];
|
|
498
498
|
} & {
|
|
499
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
499
500
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
500
501
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
501
502
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -533,7 +534,6 @@ export declare const NavigationItemLocator: {
|
|
|
533
534
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
534
535
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
535
536
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
536
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
537
537
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
538
538
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
539
539
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|