@instructure/ui-position 8.13.1-snapshot.9 → 8.14.0
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/package.json +17 -18
- package/tsconfig.build.json +54 -2
- package/tsconfig.build.tsbuildinfo +1 -0
- package/types/Position/PositionContentLocator.d.ts +52 -52
- package/types/Position/PositionLocator.d.ts +208 -208
- package/types/Position/PositionTargetLocator.d.ts +52 -52
- package/LICENSE.md +0 -27
|
@@ -17,25 +17,15 @@ export declare const customMethods: {
|
|
|
17
17
|
toString: (maxLength?: number | undefined, options?: {
|
|
18
18
|
highlight: boolean;
|
|
19
19
|
} | undefined) => string;
|
|
20
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
21
|
-
children: (selector: string) => Element[];
|
|
22
|
-
title: () => string | null | undefined;
|
|
23
|
-
id: () => string;
|
|
24
|
-
tagName: () => string;
|
|
25
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
26
|
-
getBoundingClientRect: () => DOMRect;
|
|
27
|
-
matches: (selector: string | undefined) => boolean;
|
|
28
20
|
visible: () => boolean;
|
|
29
|
-
value: () => string | null;
|
|
30
|
-
disabled: () => string | null;
|
|
31
|
-
role: () => string | null;
|
|
32
|
-
label: () => string | null | undefined;
|
|
33
21
|
getId: () => string;
|
|
34
22
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
35
23
|
getOwnerDocument: () => Document;
|
|
36
24
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
37
25
|
getTagName: () => string;
|
|
26
|
+
tagName: () => string;
|
|
38
27
|
typeIn: (text: string) => Promise<void>;
|
|
28
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
39
29
|
getDOMNode: () => Element;
|
|
40
30
|
node: () => Element;
|
|
41
31
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -45,6 +35,7 @@ export declare const customMethods: {
|
|
|
45
35
|
getTextContent: () => string | null;
|
|
46
36
|
getParentNode: () => ParentNode | null;
|
|
47
37
|
parent: () => ParentNode | null;
|
|
38
|
+
getBoundingClientRect: () => DOMRect;
|
|
48
39
|
rect: () => DOMRect;
|
|
49
40
|
hasClass: (classname: string) => boolean;
|
|
50
41
|
containsFocus: () => boolean;
|
|
@@ -56,17 +47,25 @@ export declare const customMethods: {
|
|
|
56
47
|
exists: () => boolean;
|
|
57
48
|
text: () => string | null;
|
|
58
49
|
empty: () => boolean;
|
|
50
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
59
51
|
descendants: (selector: string) => Element[];
|
|
60
52
|
ancestors: (selector: string) => ParentNode[];
|
|
61
53
|
attribute: (qualifiedName: string) => string | null;
|
|
62
54
|
style: (property: string) => string;
|
|
63
55
|
classNames: () => string[];
|
|
56
|
+
id: () => string;
|
|
57
|
+
matches: (selector: string | undefined) => boolean;
|
|
64
58
|
checked: () => any;
|
|
65
59
|
selected: () => any;
|
|
60
|
+
disabled: () => string | null;
|
|
66
61
|
readonly: () => any;
|
|
62
|
+
role: () => string | null;
|
|
63
|
+
value: () => string | null;
|
|
64
|
+
label: () => string | null | undefined;
|
|
65
|
+
title: () => string | null | undefined;
|
|
66
|
+
children: (selector: string) => Element[];
|
|
67
67
|
parents: (selector: string) => ParentNode[];
|
|
68
68
|
} & {
|
|
69
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
70
69
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
71
70
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
72
71
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -104,6 +103,7 @@ export declare const customMethods: {
|
|
|
104
103
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
105
104
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
106
105
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
106
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
107
107
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
108
108
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
109
109
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -156,25 +156,15 @@ export declare const customMethods: {
|
|
|
156
156
|
toString: (maxLength?: number | undefined, options?: {
|
|
157
157
|
highlight: boolean;
|
|
158
158
|
} | undefined) => string;
|
|
159
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
160
|
-
children: (selector: string) => Element[];
|
|
161
|
-
title: () => string | null | undefined;
|
|
162
|
-
id: () => string;
|
|
163
|
-
tagName: () => string;
|
|
164
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
165
|
-
getBoundingClientRect: () => DOMRect;
|
|
166
|
-
matches: (selector: string | undefined) => boolean;
|
|
167
159
|
visible: () => boolean;
|
|
168
|
-
value: () => string | null;
|
|
169
|
-
disabled: () => string | null;
|
|
170
|
-
role: () => string | null;
|
|
171
|
-
label: () => string | null | undefined;
|
|
172
160
|
getId: () => string;
|
|
173
161
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
174
162
|
getOwnerDocument: () => Document;
|
|
175
163
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
176
164
|
getTagName: () => string;
|
|
165
|
+
tagName: () => string;
|
|
177
166
|
typeIn: (text: string) => Promise<void>;
|
|
167
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
178
168
|
getDOMNode: () => Element;
|
|
179
169
|
node: () => Element;
|
|
180
170
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -184,6 +174,7 @@ export declare const customMethods: {
|
|
|
184
174
|
getTextContent: () => string | null;
|
|
185
175
|
getParentNode: () => ParentNode | null;
|
|
186
176
|
parent: () => ParentNode | null;
|
|
177
|
+
getBoundingClientRect: () => DOMRect;
|
|
187
178
|
rect: () => DOMRect;
|
|
188
179
|
hasClass: (classname: string) => boolean;
|
|
189
180
|
containsFocus: () => boolean;
|
|
@@ -195,17 +186,25 @@ export declare const customMethods: {
|
|
|
195
186
|
exists: () => boolean;
|
|
196
187
|
text: () => string | null;
|
|
197
188
|
empty: () => boolean;
|
|
189
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
198
190
|
descendants: (selector: string) => Element[];
|
|
199
191
|
ancestors: (selector: string) => ParentNode[];
|
|
200
192
|
attribute: (qualifiedName: string) => string | null;
|
|
201
193
|
style: (property: string) => string;
|
|
202
194
|
classNames: () => string[];
|
|
195
|
+
id: () => string;
|
|
196
|
+
matches: (selector: string | undefined) => boolean;
|
|
203
197
|
checked: () => any;
|
|
204
198
|
selected: () => any;
|
|
199
|
+
disabled: () => string | null;
|
|
205
200
|
readonly: () => any;
|
|
201
|
+
role: () => string | null;
|
|
202
|
+
value: () => string | null;
|
|
203
|
+
label: () => string | null | undefined;
|
|
204
|
+
title: () => string | null | undefined;
|
|
205
|
+
children: (selector: string) => Element[];
|
|
206
206
|
parents: (selector: string) => ParentNode[];
|
|
207
207
|
} & {
|
|
208
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
209
208
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
210
209
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
211
210
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -243,6 +242,7 @@ export declare const customMethods: {
|
|
|
243
242
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
244
243
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
245
244
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
245
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
246
246
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
247
247
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
248
248
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -300,25 +300,15 @@ export declare const PositionLocator: {
|
|
|
300
300
|
toString: (maxLength?: number | undefined, options?: {
|
|
301
301
|
highlight: boolean;
|
|
302
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;
|
|
311
303
|
visible: () => boolean;
|
|
312
|
-
value: () => string | null;
|
|
313
|
-
disabled: () => string | null;
|
|
314
|
-
role: () => string | null;
|
|
315
|
-
label: () => string | null | undefined;
|
|
316
304
|
getId: () => string;
|
|
317
305
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
318
306
|
getOwnerDocument: () => Document;
|
|
319
307
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
320
308
|
getTagName: () => string;
|
|
309
|
+
tagName: () => string;
|
|
321
310
|
typeIn: (text: string) => Promise<void>;
|
|
311
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
322
312
|
getDOMNode: () => Element;
|
|
323
313
|
node: () => Element;
|
|
324
314
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -328,6 +318,7 @@ export declare const PositionLocator: {
|
|
|
328
318
|
getTextContent: () => string | null;
|
|
329
319
|
getParentNode: () => ParentNode | null;
|
|
330
320
|
parent: () => ParentNode | null;
|
|
321
|
+
getBoundingClientRect: () => DOMRect;
|
|
331
322
|
rect: () => DOMRect;
|
|
332
323
|
hasClass: (classname: string) => boolean;
|
|
333
324
|
containsFocus: () => boolean;
|
|
@@ -339,17 +330,25 @@ export declare const PositionLocator: {
|
|
|
339
330
|
exists: () => boolean;
|
|
340
331
|
text: () => string | null;
|
|
341
332
|
empty: () => boolean;
|
|
333
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
342
334
|
descendants: (selector: string) => Element[];
|
|
343
335
|
ancestors: (selector: string) => ParentNode[];
|
|
344
336
|
attribute: (qualifiedName: string) => string | null;
|
|
345
337
|
style: (property: string) => string;
|
|
346
338
|
classNames: () => string[];
|
|
339
|
+
id: () => string;
|
|
340
|
+
matches: (selector: string | undefined) => boolean;
|
|
347
341
|
checked: () => any;
|
|
348
342
|
selected: () => any;
|
|
343
|
+
disabled: () => string | null;
|
|
349
344
|
readonly: () => any;
|
|
345
|
+
role: () => string | null;
|
|
346
|
+
value: () => string | null;
|
|
347
|
+
label: () => string | null | undefined;
|
|
348
|
+
title: () => string | null | undefined;
|
|
349
|
+
children: (selector: string) => Element[];
|
|
350
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>;
|
|
353
352
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
354
353
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
355
354
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -387,6 +386,7 @@ export declare const PositionLocator: {
|
|
|
387
386
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
388
387
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
389
388
|
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>;
|
|
@@ -439,25 +439,15 @@ export declare const PositionLocator: {
|
|
|
439
439
|
toString: (maxLength?: number | undefined, options?: {
|
|
440
440
|
highlight: boolean;
|
|
441
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;
|
|
450
442
|
visible: () => boolean;
|
|
451
|
-
value: () => string | null;
|
|
452
|
-
disabled: () => string | null;
|
|
453
|
-
role: () => string | null;
|
|
454
|
-
label: () => string | null | undefined;
|
|
455
443
|
getId: () => string;
|
|
456
444
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
457
445
|
getOwnerDocument: () => Document;
|
|
458
446
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
459
447
|
getTagName: () => string;
|
|
448
|
+
tagName: () => string;
|
|
460
449
|
typeIn: (text: string) => Promise<void>;
|
|
450
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
461
451
|
getDOMNode: () => Element;
|
|
462
452
|
node: () => Element;
|
|
463
453
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -467,6 +457,7 @@ export declare const PositionLocator: {
|
|
|
467
457
|
getTextContent: () => string | null;
|
|
468
458
|
getParentNode: () => ParentNode | null;
|
|
469
459
|
parent: () => ParentNode | null;
|
|
460
|
+
getBoundingClientRect: () => DOMRect;
|
|
470
461
|
rect: () => DOMRect;
|
|
471
462
|
hasClass: (classname: string) => boolean;
|
|
472
463
|
containsFocus: () => boolean;
|
|
@@ -478,17 +469,25 @@ export declare const PositionLocator: {
|
|
|
478
469
|
exists: () => boolean;
|
|
479
470
|
text: () => string | null;
|
|
480
471
|
empty: () => boolean;
|
|
472
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
481
473
|
descendants: (selector: string) => Element[];
|
|
482
474
|
ancestors: (selector: string) => ParentNode[];
|
|
483
475
|
attribute: (qualifiedName: string) => string | null;
|
|
484
476
|
style: (property: string) => string;
|
|
485
477
|
classNames: () => string[];
|
|
478
|
+
id: () => string;
|
|
479
|
+
matches: (selector: string | undefined) => boolean;
|
|
486
480
|
checked: () => any;
|
|
487
481
|
selected: () => any;
|
|
482
|
+
disabled: () => string | null;
|
|
488
483
|
readonly: () => any;
|
|
484
|
+
role: () => string | null;
|
|
485
|
+
value: () => string | null;
|
|
486
|
+
label: () => string | null | undefined;
|
|
487
|
+
title: () => string | null | undefined;
|
|
488
|
+
children: (selector: string) => Element[];
|
|
489
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>;
|
|
492
491
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
493
492
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
494
493
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -526,6 +525,7 @@ export declare const PositionLocator: {
|
|
|
526
525
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
527
526
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
528
527
|
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>;
|
|
@@ -585,25 +585,15 @@ export declare const PositionLocator: {
|
|
|
585
585
|
toString: (maxLength?: number | undefined, options?: {
|
|
586
586
|
highlight: boolean;
|
|
587
587
|
} | undefined) => string;
|
|
588
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
589
|
-
children: (selector: string) => Element[];
|
|
590
|
-
title: () => string | null | undefined;
|
|
591
|
-
id: () => string;
|
|
592
|
-
tagName: () => string;
|
|
593
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
594
|
-
getBoundingClientRect: () => DOMRect;
|
|
595
|
-
matches: (selector: string | undefined) => boolean;
|
|
596
588
|
visible: () => boolean;
|
|
597
|
-
value: () => string | null;
|
|
598
|
-
disabled: () => string | null;
|
|
599
|
-
role: () => string | null;
|
|
600
|
-
label: () => string | null | undefined;
|
|
601
589
|
getId: () => string;
|
|
602
590
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
603
591
|
getOwnerDocument: () => Document;
|
|
604
592
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
605
593
|
getTagName: () => string;
|
|
594
|
+
tagName: () => string;
|
|
606
595
|
typeIn: (text: string) => Promise<void>;
|
|
596
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
607
597
|
getDOMNode: () => Element;
|
|
608
598
|
node: () => Element;
|
|
609
599
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -613,6 +603,7 @@ export declare const PositionLocator: {
|
|
|
613
603
|
getTextContent: () => string | null;
|
|
614
604
|
getParentNode: () => ParentNode | null;
|
|
615
605
|
parent: () => ParentNode | null;
|
|
606
|
+
getBoundingClientRect: () => DOMRect;
|
|
616
607
|
rect: () => DOMRect;
|
|
617
608
|
hasClass: (classname: string) => boolean;
|
|
618
609
|
containsFocus: () => boolean;
|
|
@@ -624,17 +615,25 @@ export declare const PositionLocator: {
|
|
|
624
615
|
exists: () => boolean;
|
|
625
616
|
text: () => string | null;
|
|
626
617
|
empty: () => boolean;
|
|
618
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
627
619
|
descendants: (selector: string) => Element[];
|
|
628
620
|
ancestors: (selector: string) => ParentNode[];
|
|
629
621
|
attribute: (qualifiedName: string) => string | null;
|
|
630
622
|
style: (property: string) => string;
|
|
631
623
|
classNames: () => string[];
|
|
624
|
+
id: () => string;
|
|
625
|
+
matches: (selector: string | undefined) => boolean;
|
|
632
626
|
checked: () => any;
|
|
633
627
|
selected: () => any;
|
|
628
|
+
disabled: () => string | null;
|
|
634
629
|
readonly: () => any;
|
|
630
|
+
role: () => string | null;
|
|
631
|
+
value: () => string | null;
|
|
632
|
+
label: () => string | null | undefined;
|
|
633
|
+
title: () => string | null | undefined;
|
|
634
|
+
children: (selector: string) => Element[];
|
|
635
635
|
parents: (selector: string) => ParentNode[];
|
|
636
636
|
} & {
|
|
637
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
638
637
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
639
638
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
640
639
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -672,6 +671,7 @@ export declare const PositionLocator: {
|
|
|
672
671
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
673
672
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
674
673
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
674
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
675
675
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
676
676
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
677
677
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -724,25 +724,15 @@ export declare const PositionLocator: {
|
|
|
724
724
|
toString: (maxLength?: number | undefined, options?: {
|
|
725
725
|
highlight: boolean;
|
|
726
726
|
} | undefined) => string;
|
|
727
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
728
|
-
children: (selector: string) => Element[];
|
|
729
|
-
title: () => string | null | undefined;
|
|
730
|
-
id: () => string;
|
|
731
|
-
tagName: () => string;
|
|
732
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
733
|
-
getBoundingClientRect: () => DOMRect;
|
|
734
|
-
matches: (selector: string | undefined) => boolean;
|
|
735
727
|
visible: () => boolean;
|
|
736
|
-
value: () => string | null;
|
|
737
|
-
disabled: () => string | null;
|
|
738
|
-
role: () => string | null;
|
|
739
|
-
label: () => string | null | undefined;
|
|
740
728
|
getId: () => string;
|
|
741
729
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
742
730
|
getOwnerDocument: () => Document;
|
|
743
731
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
744
732
|
getTagName: () => string;
|
|
733
|
+
tagName: () => string;
|
|
745
734
|
typeIn: (text: string) => Promise<void>;
|
|
735
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
746
736
|
getDOMNode: () => Element;
|
|
747
737
|
node: () => Element;
|
|
748
738
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -752,6 +742,7 @@ export declare const PositionLocator: {
|
|
|
752
742
|
getTextContent: () => string | null;
|
|
753
743
|
getParentNode: () => ParentNode | null;
|
|
754
744
|
parent: () => ParentNode | null;
|
|
745
|
+
getBoundingClientRect: () => DOMRect;
|
|
755
746
|
rect: () => DOMRect;
|
|
756
747
|
hasClass: (classname: string) => boolean;
|
|
757
748
|
containsFocus: () => boolean;
|
|
@@ -763,17 +754,25 @@ export declare const PositionLocator: {
|
|
|
763
754
|
exists: () => boolean;
|
|
764
755
|
text: () => string | null;
|
|
765
756
|
empty: () => boolean;
|
|
757
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
766
758
|
descendants: (selector: string) => Element[];
|
|
767
759
|
ancestors: (selector: string) => ParentNode[];
|
|
768
760
|
attribute: (qualifiedName: string) => string | null;
|
|
769
761
|
style: (property: string) => string;
|
|
770
762
|
classNames: () => string[];
|
|
763
|
+
id: () => string;
|
|
764
|
+
matches: (selector: string | undefined) => boolean;
|
|
771
765
|
checked: () => any;
|
|
772
766
|
selected: () => any;
|
|
767
|
+
disabled: () => string | null;
|
|
773
768
|
readonly: () => any;
|
|
769
|
+
role: () => string | null;
|
|
770
|
+
value: () => string | null;
|
|
771
|
+
label: () => string | null | undefined;
|
|
772
|
+
title: () => string | null | undefined;
|
|
773
|
+
children: (selector: string) => Element[];
|
|
774
774
|
parents: (selector: string) => ParentNode[];
|
|
775
775
|
} & {
|
|
776
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
777
776
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
778
777
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
779
778
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -811,6 +810,7 @@ export declare const PositionLocator: {
|
|
|
811
810
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
812
811
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
813
812
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
813
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
814
814
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
815
815
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
816
816
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -863,25 +863,15 @@ export declare const PositionLocator: {
|
|
|
863
863
|
toString: (maxLength?: number | undefined, options?: {
|
|
864
864
|
highlight: boolean;
|
|
865
865
|
} | undefined) => string;
|
|
866
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
867
|
-
children: (selector: string) => Element[];
|
|
868
|
-
title: () => string | null | undefined;
|
|
869
|
-
id: () => string;
|
|
870
|
-
tagName: () => string;
|
|
871
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
872
|
-
getBoundingClientRect: () => DOMRect;
|
|
873
|
-
matches: (selector: string | undefined) => boolean;
|
|
874
866
|
visible: () => boolean;
|
|
875
|
-
value: () => string | null;
|
|
876
|
-
disabled: () => string | null;
|
|
877
|
-
role: () => string | null;
|
|
878
|
-
label: () => string | null | undefined;
|
|
879
867
|
getId: () => string;
|
|
880
868
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
881
869
|
getOwnerDocument: () => Document;
|
|
882
870
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
883
871
|
getTagName: () => string;
|
|
872
|
+
tagName: () => string;
|
|
884
873
|
typeIn: (text: string) => Promise<void>;
|
|
874
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
885
875
|
getDOMNode: () => Element;
|
|
886
876
|
node: () => Element;
|
|
887
877
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -891,6 +881,7 @@ export declare const PositionLocator: {
|
|
|
891
881
|
getTextContent: () => string | null;
|
|
892
882
|
getParentNode: () => ParentNode | null;
|
|
893
883
|
parent: () => ParentNode | null;
|
|
884
|
+
getBoundingClientRect: () => DOMRect;
|
|
894
885
|
rect: () => DOMRect;
|
|
895
886
|
hasClass: (classname: string) => boolean;
|
|
896
887
|
containsFocus: () => boolean;
|
|
@@ -902,17 +893,25 @@ export declare const PositionLocator: {
|
|
|
902
893
|
exists: () => boolean;
|
|
903
894
|
text: () => string | null;
|
|
904
895
|
empty: () => boolean;
|
|
896
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
905
897
|
descendants: (selector: string) => Element[];
|
|
906
898
|
ancestors: (selector: string) => ParentNode[];
|
|
907
899
|
attribute: (qualifiedName: string) => string | null;
|
|
908
900
|
style: (property: string) => string;
|
|
909
901
|
classNames: () => string[];
|
|
902
|
+
id: () => string;
|
|
903
|
+
matches: (selector: string | undefined) => boolean;
|
|
910
904
|
checked: () => any;
|
|
911
905
|
selected: () => any;
|
|
906
|
+
disabled: () => string | null;
|
|
912
907
|
readonly: () => any;
|
|
908
|
+
role: () => string | null;
|
|
909
|
+
value: () => string | null;
|
|
910
|
+
label: () => string | null | undefined;
|
|
911
|
+
title: () => string | null | undefined;
|
|
912
|
+
children: (selector: string) => Element[];
|
|
913
913
|
parents: (selector: string) => ParentNode[];
|
|
914
914
|
} & {
|
|
915
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
916
915
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
917
916
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
918
917
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -950,6 +949,7 @@ export declare const PositionLocator: {
|
|
|
950
949
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
951
950
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
952
951
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
952
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
953
953
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
954
954
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
955
955
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1003,25 +1003,15 @@ export declare const PositionLocator: {
|
|
|
1003
1003
|
toString: (maxLength?: number | undefined, options?: {
|
|
1004
1004
|
highlight: boolean;
|
|
1005
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;
|
|
1014
1006
|
visible: () => boolean;
|
|
1015
|
-
value: () => string | null;
|
|
1016
|
-
disabled: () => string | null;
|
|
1017
|
-
role: () => string | null;
|
|
1018
|
-
label: () => string | null | undefined;
|
|
1019
1007
|
getId: () => string;
|
|
1020
1008
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1021
1009
|
getOwnerDocument: () => Document;
|
|
1022
1010
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1023
1011
|
getTagName: () => string;
|
|
1012
|
+
tagName: () => string;
|
|
1024
1013
|
typeIn: (text: string) => Promise<void>;
|
|
1014
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1025
1015
|
getDOMNode: () => Element;
|
|
1026
1016
|
node: () => Element;
|
|
1027
1017
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1031,6 +1021,7 @@ export declare const PositionLocator: {
|
|
|
1031
1021
|
getTextContent: () => string | null;
|
|
1032
1022
|
getParentNode: () => ParentNode | null;
|
|
1033
1023
|
parent: () => ParentNode | null;
|
|
1024
|
+
getBoundingClientRect: () => DOMRect;
|
|
1034
1025
|
rect: () => DOMRect;
|
|
1035
1026
|
hasClass: (classname: string) => boolean;
|
|
1036
1027
|
containsFocus: () => boolean;
|
|
@@ -1042,17 +1033,25 @@ export declare const PositionLocator: {
|
|
|
1042
1033
|
exists: () => boolean;
|
|
1043
1034
|
text: () => string | null;
|
|
1044
1035
|
empty: () => boolean;
|
|
1036
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1045
1037
|
descendants: (selector: string) => Element[];
|
|
1046
1038
|
ancestors: (selector: string) => ParentNode[];
|
|
1047
1039
|
attribute: (qualifiedName: string) => string | null;
|
|
1048
1040
|
style: (property: string) => string;
|
|
1049
1041
|
classNames: () => string[];
|
|
1042
|
+
id: () => string;
|
|
1043
|
+
matches: (selector: string | undefined) => boolean;
|
|
1050
1044
|
checked: () => any;
|
|
1051
1045
|
selected: () => any;
|
|
1046
|
+
disabled: () => string | null;
|
|
1052
1047
|
readonly: () => any;
|
|
1048
|
+
role: () => string | null;
|
|
1049
|
+
value: () => string | null;
|
|
1050
|
+
label: () => string | null | undefined;
|
|
1051
|
+
title: () => string | null | undefined;
|
|
1052
|
+
children: (selector: string) => Element[];
|
|
1053
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>;
|
|
1056
1055
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1057
1056
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1058
1057
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1090,6 +1089,7 @@ export declare const PositionLocator: {
|
|
|
1090
1089
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1091
1090
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1092
1091
|
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>;
|
|
@@ -1142,25 +1142,15 @@ export declare const PositionLocator: {
|
|
|
1142
1142
|
toString: (maxLength?: number | undefined, options?: {
|
|
1143
1143
|
highlight: boolean;
|
|
1144
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;
|
|
1153
1145
|
visible: () => boolean;
|
|
1154
|
-
value: () => string | null;
|
|
1155
|
-
disabled: () => string | null;
|
|
1156
|
-
role: () => string | null;
|
|
1157
|
-
label: () => string | null | undefined;
|
|
1158
1146
|
getId: () => string;
|
|
1159
1147
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1160
1148
|
getOwnerDocument: () => Document;
|
|
1161
1149
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1162
1150
|
getTagName: () => string;
|
|
1151
|
+
tagName: () => string;
|
|
1163
1152
|
typeIn: (text: string) => Promise<void>;
|
|
1153
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1164
1154
|
getDOMNode: () => Element;
|
|
1165
1155
|
node: () => Element;
|
|
1166
1156
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1170,6 +1160,7 @@ export declare const PositionLocator: {
|
|
|
1170
1160
|
getTextContent: () => string | null;
|
|
1171
1161
|
getParentNode: () => ParentNode | null;
|
|
1172
1162
|
parent: () => ParentNode | null;
|
|
1163
|
+
getBoundingClientRect: () => DOMRect;
|
|
1173
1164
|
rect: () => DOMRect;
|
|
1174
1165
|
hasClass: (classname: string) => boolean;
|
|
1175
1166
|
containsFocus: () => boolean;
|
|
@@ -1181,17 +1172,25 @@ export declare const PositionLocator: {
|
|
|
1181
1172
|
exists: () => boolean;
|
|
1182
1173
|
text: () => string | null;
|
|
1183
1174
|
empty: () => boolean;
|
|
1175
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1184
1176
|
descendants: (selector: string) => Element[];
|
|
1185
1177
|
ancestors: (selector: string) => ParentNode[];
|
|
1186
1178
|
attribute: (qualifiedName: string) => string | null;
|
|
1187
1179
|
style: (property: string) => string;
|
|
1188
1180
|
classNames: () => string[];
|
|
1181
|
+
id: () => string;
|
|
1182
|
+
matches: (selector: string | undefined) => boolean;
|
|
1189
1183
|
checked: () => any;
|
|
1190
1184
|
selected: () => any;
|
|
1185
|
+
disabled: () => string | null;
|
|
1191
1186
|
readonly: () => any;
|
|
1187
|
+
role: () => string | null;
|
|
1188
|
+
value: () => string | null;
|
|
1189
|
+
label: () => string | null | undefined;
|
|
1190
|
+
title: () => string | null | undefined;
|
|
1191
|
+
children: (selector: string) => Element[];
|
|
1192
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>;
|
|
1195
1194
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1196
1195
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1197
1196
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1229,6 +1228,7 @@ export declare const PositionLocator: {
|
|
|
1229
1228
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1230
1229
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1231
1230
|
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>;
|
|
@@ -1281,25 +1281,15 @@ export declare const PositionLocator: {
|
|
|
1281
1281
|
toString: (maxLength?: number | undefined, options?: {
|
|
1282
1282
|
highlight: boolean;
|
|
1283
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;
|
|
1292
1284
|
visible: () => boolean;
|
|
1293
|
-
value: () => string | null;
|
|
1294
|
-
disabled: () => string | null;
|
|
1295
|
-
role: () => string | null;
|
|
1296
|
-
label: () => string | null | undefined;
|
|
1297
1285
|
getId: () => string;
|
|
1298
1286
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1299
1287
|
getOwnerDocument: () => Document;
|
|
1300
1288
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1301
1289
|
getTagName: () => string;
|
|
1290
|
+
tagName: () => string;
|
|
1302
1291
|
typeIn: (text: string) => Promise<void>;
|
|
1292
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1303
1293
|
getDOMNode: () => Element;
|
|
1304
1294
|
node: () => Element;
|
|
1305
1295
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1309,6 +1299,7 @@ export declare const PositionLocator: {
|
|
|
1309
1299
|
getTextContent: () => string | null;
|
|
1310
1300
|
getParentNode: () => ParentNode | null;
|
|
1311
1301
|
parent: () => ParentNode | null;
|
|
1302
|
+
getBoundingClientRect: () => DOMRect;
|
|
1312
1303
|
rect: () => DOMRect;
|
|
1313
1304
|
hasClass: (classname: string) => boolean;
|
|
1314
1305
|
containsFocus: () => boolean;
|
|
@@ -1320,17 +1311,25 @@ export declare const PositionLocator: {
|
|
|
1320
1311
|
exists: () => boolean;
|
|
1321
1312
|
text: () => string | null;
|
|
1322
1313
|
empty: () => boolean;
|
|
1314
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1323
1315
|
descendants: (selector: string) => Element[];
|
|
1324
1316
|
ancestors: (selector: string) => ParentNode[];
|
|
1325
1317
|
attribute: (qualifiedName: string) => string | null;
|
|
1326
1318
|
style: (property: string) => string;
|
|
1327
1319
|
classNames: () => string[];
|
|
1320
|
+
id: () => string;
|
|
1321
|
+
matches: (selector: string | undefined) => boolean;
|
|
1328
1322
|
checked: () => any;
|
|
1329
1323
|
selected: () => any;
|
|
1324
|
+
disabled: () => string | null;
|
|
1330
1325
|
readonly: () => any;
|
|
1326
|
+
role: () => string | null;
|
|
1327
|
+
value: () => string | null;
|
|
1328
|
+
label: () => string | null | undefined;
|
|
1329
|
+
title: () => string | null | undefined;
|
|
1330
|
+
children: (selector: string) => Element[];
|
|
1331
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>;
|
|
1334
1333
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1335
1334
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1336
1335
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1368,6 +1367,7 @@ export declare const PositionLocator: {
|
|
|
1368
1367
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1369
1368
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1370
1369
|
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>;
|
|
@@ -1421,25 +1421,15 @@ export declare const PositionLocator: {
|
|
|
1421
1421
|
toString: (maxLength?: number | undefined, options?: {
|
|
1422
1422
|
highlight: boolean;
|
|
1423
1423
|
} | undefined) => string;
|
|
1424
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1425
|
-
children: (selector: string) => Element[];
|
|
1426
|
-
title: () => string | null | undefined;
|
|
1427
|
-
id: () => string;
|
|
1428
|
-
tagName: () => string;
|
|
1429
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1430
|
-
getBoundingClientRect: () => DOMRect;
|
|
1431
|
-
matches: (selector: string | undefined) => boolean;
|
|
1432
1424
|
visible: () => boolean;
|
|
1433
|
-
value: () => string | null;
|
|
1434
|
-
disabled: () => string | null;
|
|
1435
|
-
role: () => string | null;
|
|
1436
|
-
label: () => string | null | undefined;
|
|
1437
1425
|
getId: () => string;
|
|
1438
1426
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1439
1427
|
getOwnerDocument: () => Document;
|
|
1440
1428
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1441
1429
|
getTagName: () => string;
|
|
1430
|
+
tagName: () => string;
|
|
1442
1431
|
typeIn: (text: string) => Promise<void>;
|
|
1432
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1443
1433
|
getDOMNode: () => Element;
|
|
1444
1434
|
node: () => Element;
|
|
1445
1435
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1449,6 +1439,7 @@ export declare const PositionLocator: {
|
|
|
1449
1439
|
getTextContent: () => string | null;
|
|
1450
1440
|
getParentNode: () => ParentNode | null;
|
|
1451
1441
|
parent: () => ParentNode | null;
|
|
1442
|
+
getBoundingClientRect: () => DOMRect;
|
|
1452
1443
|
rect: () => DOMRect;
|
|
1453
1444
|
hasClass: (classname: string) => boolean;
|
|
1454
1445
|
containsFocus: () => boolean;
|
|
@@ -1460,17 +1451,25 @@ export declare const PositionLocator: {
|
|
|
1460
1451
|
exists: () => boolean;
|
|
1461
1452
|
text: () => string | null;
|
|
1462
1453
|
empty: () => boolean;
|
|
1454
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1463
1455
|
descendants: (selector: string) => Element[];
|
|
1464
1456
|
ancestors: (selector: string) => ParentNode[];
|
|
1465
1457
|
attribute: (qualifiedName: string) => string | null;
|
|
1466
1458
|
style: (property: string) => string;
|
|
1467
1459
|
classNames: () => string[];
|
|
1460
|
+
id: () => string;
|
|
1461
|
+
matches: (selector: string | undefined) => boolean;
|
|
1468
1462
|
checked: () => any;
|
|
1469
1463
|
selected: () => any;
|
|
1464
|
+
disabled: () => string | null;
|
|
1470
1465
|
readonly: () => any;
|
|
1466
|
+
role: () => string | null;
|
|
1467
|
+
value: () => string | null;
|
|
1468
|
+
label: () => string | null | undefined;
|
|
1469
|
+
title: () => string | null | undefined;
|
|
1470
|
+
children: (selector: string) => Element[];
|
|
1471
1471
|
parents: (selector: string) => ParentNode[];
|
|
1472
1472
|
} & {
|
|
1473
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1474
1473
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1475
1474
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1476
1475
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1508,6 +1507,7 @@ export declare const PositionLocator: {
|
|
|
1508
1507
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1509
1508
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1510
1509
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1510
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1511
1511
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1512
1512
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1513
1513
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1560,25 +1560,15 @@ export declare const PositionLocator: {
|
|
|
1560
1560
|
toString: (maxLength?: number | undefined, options?: {
|
|
1561
1561
|
highlight: boolean;
|
|
1562
1562
|
} | undefined) => string;
|
|
1563
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1564
|
-
children: (selector: string) => Element[];
|
|
1565
|
-
title: () => string | null | undefined;
|
|
1566
|
-
id: () => string;
|
|
1567
|
-
tagName: () => string;
|
|
1568
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1569
|
-
getBoundingClientRect: () => DOMRect;
|
|
1570
|
-
matches: (selector: string | undefined) => boolean;
|
|
1571
1563
|
visible: () => boolean;
|
|
1572
|
-
value: () => string | null;
|
|
1573
|
-
disabled: () => string | null;
|
|
1574
|
-
role: () => string | null;
|
|
1575
|
-
label: () => string | null | undefined;
|
|
1576
1564
|
getId: () => string;
|
|
1577
1565
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1578
1566
|
getOwnerDocument: () => Document;
|
|
1579
1567
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1580
1568
|
getTagName: () => string;
|
|
1569
|
+
tagName: () => string;
|
|
1581
1570
|
typeIn: (text: string) => Promise<void>;
|
|
1571
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1582
1572
|
getDOMNode: () => Element;
|
|
1583
1573
|
node: () => Element;
|
|
1584
1574
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1588,6 +1578,7 @@ export declare const PositionLocator: {
|
|
|
1588
1578
|
getTextContent: () => string | null;
|
|
1589
1579
|
getParentNode: () => ParentNode | null;
|
|
1590
1580
|
parent: () => ParentNode | null;
|
|
1581
|
+
getBoundingClientRect: () => DOMRect;
|
|
1591
1582
|
rect: () => DOMRect;
|
|
1592
1583
|
hasClass: (classname: string) => boolean;
|
|
1593
1584
|
containsFocus: () => boolean;
|
|
@@ -1599,17 +1590,25 @@ export declare const PositionLocator: {
|
|
|
1599
1590
|
exists: () => boolean;
|
|
1600
1591
|
text: () => string | null;
|
|
1601
1592
|
empty: () => boolean;
|
|
1593
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1602
1594
|
descendants: (selector: string) => Element[];
|
|
1603
1595
|
ancestors: (selector: string) => ParentNode[];
|
|
1604
1596
|
attribute: (qualifiedName: string) => string | null;
|
|
1605
1597
|
style: (property: string) => string;
|
|
1606
1598
|
classNames: () => string[];
|
|
1599
|
+
id: () => string;
|
|
1600
|
+
matches: (selector: string | undefined) => boolean;
|
|
1607
1601
|
checked: () => any;
|
|
1608
1602
|
selected: () => any;
|
|
1603
|
+
disabled: () => string | null;
|
|
1609
1604
|
readonly: () => any;
|
|
1605
|
+
role: () => string | null;
|
|
1606
|
+
value: () => string | null;
|
|
1607
|
+
label: () => string | null | undefined;
|
|
1608
|
+
title: () => string | null | undefined;
|
|
1609
|
+
children: (selector: string) => Element[];
|
|
1610
1610
|
parents: (selector: string) => ParentNode[];
|
|
1611
1611
|
} & {
|
|
1612
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1613
1612
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1614
1613
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1615
1614
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1647,6 +1646,7 @@ export declare const PositionLocator: {
|
|
|
1647
1646
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1648
1647
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1649
1648
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1649
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1650
1650
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1651
1651
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1652
1652
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1699,25 +1699,15 @@ export declare const PositionLocator: {
|
|
|
1699
1699
|
toString: (maxLength?: number | undefined, options?: {
|
|
1700
1700
|
highlight: boolean;
|
|
1701
1701
|
} | undefined) => string;
|
|
1702
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1703
|
-
children: (selector: string) => Element[];
|
|
1704
|
-
title: () => string | null | undefined;
|
|
1705
|
-
id: () => string;
|
|
1706
|
-
tagName: () => string;
|
|
1707
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1708
|
-
getBoundingClientRect: () => DOMRect;
|
|
1709
|
-
matches: (selector: string | undefined) => boolean;
|
|
1710
1702
|
visible: () => boolean;
|
|
1711
|
-
value: () => string | null;
|
|
1712
|
-
disabled: () => string | null;
|
|
1713
|
-
role: () => string | null;
|
|
1714
|
-
label: () => string | null | undefined;
|
|
1715
1703
|
getId: () => string;
|
|
1716
1704
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1717
1705
|
getOwnerDocument: () => Document;
|
|
1718
1706
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1719
1707
|
getTagName: () => string;
|
|
1708
|
+
tagName: () => string;
|
|
1720
1709
|
typeIn: (text: string) => Promise<void>;
|
|
1710
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1721
1711
|
getDOMNode: () => Element;
|
|
1722
1712
|
node: () => Element;
|
|
1723
1713
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1727,6 +1717,7 @@ export declare const PositionLocator: {
|
|
|
1727
1717
|
getTextContent: () => string | null;
|
|
1728
1718
|
getParentNode: () => ParentNode | null;
|
|
1729
1719
|
parent: () => ParentNode | null;
|
|
1720
|
+
getBoundingClientRect: () => DOMRect;
|
|
1730
1721
|
rect: () => DOMRect;
|
|
1731
1722
|
hasClass: (classname: string) => boolean;
|
|
1732
1723
|
containsFocus: () => boolean;
|
|
@@ -1738,17 +1729,25 @@ export declare const PositionLocator: {
|
|
|
1738
1729
|
exists: () => boolean;
|
|
1739
1730
|
text: () => string | null;
|
|
1740
1731
|
empty: () => boolean;
|
|
1732
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1741
1733
|
descendants: (selector: string) => Element[];
|
|
1742
1734
|
ancestors: (selector: string) => ParentNode[];
|
|
1743
1735
|
attribute: (qualifiedName: string) => string | null;
|
|
1744
1736
|
style: (property: string) => string;
|
|
1745
1737
|
classNames: () => string[];
|
|
1738
|
+
id: () => string;
|
|
1739
|
+
matches: (selector: string | undefined) => boolean;
|
|
1746
1740
|
checked: () => any;
|
|
1747
1741
|
selected: () => any;
|
|
1742
|
+
disabled: () => string | null;
|
|
1748
1743
|
readonly: () => any;
|
|
1744
|
+
role: () => string | null;
|
|
1745
|
+
value: () => string | null;
|
|
1746
|
+
label: () => string | null | undefined;
|
|
1747
|
+
title: () => string | null | undefined;
|
|
1748
|
+
children: (selector: string) => Element[];
|
|
1749
1749
|
parents: (selector: string) => ParentNode[];
|
|
1750
1750
|
} & {
|
|
1751
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1752
1751
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1753
1752
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1754
1753
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1786,6 +1785,7 @@ export declare const PositionLocator: {
|
|
|
1786
1785
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1787
1786
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1788
1787
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1788
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1789
1789
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1790
1790
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1791
1791
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1839,25 +1839,15 @@ export declare const PositionLocator: {
|
|
|
1839
1839
|
toString: (maxLength?: number | undefined, options?: {
|
|
1840
1840
|
highlight: boolean;
|
|
1841
1841
|
} | undefined) => string;
|
|
1842
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1843
|
-
children: (selector: string) => Element[];
|
|
1844
|
-
title: () => string | null | undefined;
|
|
1845
|
-
id: () => string;
|
|
1846
|
-
tagName: () => string;
|
|
1847
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1848
|
-
getBoundingClientRect: () => DOMRect;
|
|
1849
|
-
matches: (selector: string | undefined) => boolean;
|
|
1850
1842
|
visible: () => boolean;
|
|
1851
|
-
value: () => string | null;
|
|
1852
|
-
disabled: () => string | null;
|
|
1853
|
-
role: () => string | null;
|
|
1854
|
-
label: () => string | null | undefined;
|
|
1855
1843
|
getId: () => string;
|
|
1856
1844
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1857
1845
|
getOwnerDocument: () => Document;
|
|
1858
1846
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1859
1847
|
getTagName: () => string;
|
|
1848
|
+
tagName: () => string;
|
|
1860
1849
|
typeIn: (text: string) => Promise<void>;
|
|
1850
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1861
1851
|
getDOMNode: () => Element;
|
|
1862
1852
|
node: () => Element;
|
|
1863
1853
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1867,6 +1857,7 @@ export declare const PositionLocator: {
|
|
|
1867
1857
|
getTextContent: () => string | null;
|
|
1868
1858
|
getParentNode: () => ParentNode | null;
|
|
1869
1859
|
parent: () => ParentNode | null;
|
|
1860
|
+
getBoundingClientRect: () => DOMRect;
|
|
1870
1861
|
rect: () => DOMRect;
|
|
1871
1862
|
hasClass: (classname: string) => boolean;
|
|
1872
1863
|
containsFocus: () => boolean;
|
|
@@ -1878,17 +1869,25 @@ export declare const PositionLocator: {
|
|
|
1878
1869
|
exists: () => boolean;
|
|
1879
1870
|
text: () => string | null;
|
|
1880
1871
|
empty: () => boolean;
|
|
1872
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1881
1873
|
descendants: (selector: string) => Element[];
|
|
1882
1874
|
ancestors: (selector: string) => ParentNode[];
|
|
1883
1875
|
attribute: (qualifiedName: string) => string | null;
|
|
1884
1876
|
style: (property: string) => string;
|
|
1885
1877
|
classNames: () => string[];
|
|
1878
|
+
id: () => string;
|
|
1879
|
+
matches: (selector: string | undefined) => boolean;
|
|
1886
1880
|
checked: () => any;
|
|
1887
1881
|
selected: () => any;
|
|
1882
|
+
disabled: () => string | null;
|
|
1888
1883
|
readonly: () => any;
|
|
1884
|
+
role: () => string | null;
|
|
1885
|
+
value: () => string | null;
|
|
1886
|
+
label: () => string | null | undefined;
|
|
1887
|
+
title: () => string | null | undefined;
|
|
1888
|
+
children: (selector: string) => Element[];
|
|
1889
1889
|
parents: (selector: string) => ParentNode[];
|
|
1890
1890
|
} & {
|
|
1891
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1892
1891
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1893
1892
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1894
1893
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1926,6 +1925,7 @@ export declare const PositionLocator: {
|
|
|
1926
1925
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1927
1926
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1928
1927
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1928
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1929
1929
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1930
1930
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1931
1931
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1978,25 +1978,15 @@ export declare const PositionLocator: {
|
|
|
1978
1978
|
toString: (maxLength?: number | undefined, options?: {
|
|
1979
1979
|
highlight: boolean;
|
|
1980
1980
|
} | undefined) => string;
|
|
1981
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1982
|
-
children: (selector: string) => Element[];
|
|
1983
|
-
title: () => string | null | undefined;
|
|
1984
|
-
id: () => string;
|
|
1985
|
-
tagName: () => string;
|
|
1986
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1987
|
-
getBoundingClientRect: () => DOMRect;
|
|
1988
|
-
matches: (selector: string | undefined) => boolean;
|
|
1989
1981
|
visible: () => boolean;
|
|
1990
|
-
value: () => string | null;
|
|
1991
|
-
disabled: () => string | null;
|
|
1992
|
-
role: () => string | null;
|
|
1993
|
-
label: () => string | null | undefined;
|
|
1994
1982
|
getId: () => string;
|
|
1995
1983
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1996
1984
|
getOwnerDocument: () => Document;
|
|
1997
1985
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1998
1986
|
getTagName: () => string;
|
|
1987
|
+
tagName: () => string;
|
|
1999
1988
|
typeIn: (text: string) => Promise<void>;
|
|
1989
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
2000
1990
|
getDOMNode: () => Element;
|
|
2001
1991
|
node: () => Element;
|
|
2002
1992
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -2006,6 +1996,7 @@ export declare const PositionLocator: {
|
|
|
2006
1996
|
getTextContent: () => string | null;
|
|
2007
1997
|
getParentNode: () => ParentNode | null;
|
|
2008
1998
|
parent: () => ParentNode | null;
|
|
1999
|
+
getBoundingClientRect: () => DOMRect;
|
|
2009
2000
|
rect: () => DOMRect;
|
|
2010
2001
|
hasClass: (classname: string) => boolean;
|
|
2011
2002
|
containsFocus: () => boolean;
|
|
@@ -2017,17 +2008,25 @@ export declare const PositionLocator: {
|
|
|
2017
2008
|
exists: () => boolean;
|
|
2018
2009
|
text: () => string | null;
|
|
2019
2010
|
empty: () => boolean;
|
|
2011
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2020
2012
|
descendants: (selector: string) => Element[];
|
|
2021
2013
|
ancestors: (selector: string) => ParentNode[];
|
|
2022
2014
|
attribute: (qualifiedName: string) => string | null;
|
|
2023
2015
|
style: (property: string) => string;
|
|
2024
2016
|
classNames: () => string[];
|
|
2017
|
+
id: () => string;
|
|
2018
|
+
matches: (selector: string | undefined) => boolean;
|
|
2025
2019
|
checked: () => any;
|
|
2026
2020
|
selected: () => any;
|
|
2021
|
+
disabled: () => string | null;
|
|
2027
2022
|
readonly: () => any;
|
|
2023
|
+
role: () => string | null;
|
|
2024
|
+
value: () => string | null;
|
|
2025
|
+
label: () => string | null | undefined;
|
|
2026
|
+
title: () => string | null | undefined;
|
|
2027
|
+
children: (selector: string) => Element[];
|
|
2028
2028
|
parents: (selector: string) => ParentNode[];
|
|
2029
2029
|
} & {
|
|
2030
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2031
2030
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2032
2031
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2033
2032
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2065,6 +2064,7 @@ export declare const PositionLocator: {
|
|
|
2065
2064
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2066
2065
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2067
2066
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2067
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2068
2068
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2069
2069
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2070
2070
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2117,25 +2117,15 @@ export declare const PositionLocator: {
|
|
|
2117
2117
|
toString: (maxLength?: number | undefined, options?: {
|
|
2118
2118
|
highlight: boolean;
|
|
2119
2119
|
} | undefined) => string;
|
|
2120
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2121
|
-
children: (selector: string) => Element[];
|
|
2122
|
-
title: () => string | null | undefined;
|
|
2123
|
-
id: () => string;
|
|
2124
|
-
tagName: () => string;
|
|
2125
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
2126
|
-
getBoundingClientRect: () => DOMRect;
|
|
2127
|
-
matches: (selector: string | undefined) => boolean;
|
|
2128
2120
|
visible: () => boolean;
|
|
2129
|
-
value: () => string | null;
|
|
2130
|
-
disabled: () => string | null;
|
|
2131
|
-
role: () => string | null;
|
|
2132
|
-
label: () => string | null | undefined;
|
|
2133
2121
|
getId: () => string;
|
|
2134
2122
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
2135
2123
|
getOwnerDocument: () => Document;
|
|
2136
2124
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
2137
2125
|
getTagName: () => string;
|
|
2126
|
+
tagName: () => string;
|
|
2138
2127
|
typeIn: (text: string) => Promise<void>;
|
|
2128
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
2139
2129
|
getDOMNode: () => Element;
|
|
2140
2130
|
node: () => Element;
|
|
2141
2131
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -2145,6 +2135,7 @@ export declare const PositionLocator: {
|
|
|
2145
2135
|
getTextContent: () => string | null;
|
|
2146
2136
|
getParentNode: () => ParentNode | null;
|
|
2147
2137
|
parent: () => ParentNode | null;
|
|
2138
|
+
getBoundingClientRect: () => DOMRect;
|
|
2148
2139
|
rect: () => DOMRect;
|
|
2149
2140
|
hasClass: (classname: string) => boolean;
|
|
2150
2141
|
containsFocus: () => boolean;
|
|
@@ -2156,17 +2147,25 @@ export declare const PositionLocator: {
|
|
|
2156
2147
|
exists: () => boolean;
|
|
2157
2148
|
text: () => string | null;
|
|
2158
2149
|
empty: () => boolean;
|
|
2150
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2159
2151
|
descendants: (selector: string) => Element[];
|
|
2160
2152
|
ancestors: (selector: string) => ParentNode[];
|
|
2161
2153
|
attribute: (qualifiedName: string) => string | null;
|
|
2162
2154
|
style: (property: string) => string;
|
|
2163
2155
|
classNames: () => string[];
|
|
2156
|
+
id: () => string;
|
|
2157
|
+
matches: (selector: string | undefined) => boolean;
|
|
2164
2158
|
checked: () => any;
|
|
2165
2159
|
selected: () => any;
|
|
2160
|
+
disabled: () => string | null;
|
|
2166
2161
|
readonly: () => any;
|
|
2162
|
+
role: () => string | null;
|
|
2163
|
+
value: () => string | null;
|
|
2164
|
+
label: () => string | null | undefined;
|
|
2165
|
+
title: () => string | null | undefined;
|
|
2166
|
+
children: (selector: string) => Element[];
|
|
2167
2167
|
parents: (selector: string) => ParentNode[];
|
|
2168
2168
|
} & {
|
|
2169
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2170
2169
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2171
2170
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2172
2171
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2204,6 +2203,7 @@ export declare const PositionLocator: {
|
|
|
2204
2203
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2205
2204
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2206
2205
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2206
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2207
2207
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2208
2208
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2209
2209
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|