@instructure/ui-toggle-details 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 +22 -23
- package/tsconfig.build.json +26 -2
- package/tsconfig.build.tsbuildinfo +1 -0
- package/types/ToggleDetails/ToggleDetailsLocator.d.ts +208 -208
- package/types/ToggleGroup/ToggleGroupLocator.d.ts +208 -208
- package/LICENSE.md +0 -27
|
@@ -16,25 +16,15 @@ export declare const customMethods: {
|
|
|
16
16
|
toString: (maxLength?: number | undefined, options?: {
|
|
17
17
|
highlight: boolean;
|
|
18
18
|
} | undefined) => string;
|
|
19
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
20
|
-
children: (selector: string) => Element[];
|
|
21
|
-
title: () => string | null | undefined;
|
|
22
|
-
id: () => string;
|
|
23
|
-
tagName: () => string;
|
|
24
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
25
|
-
getBoundingClientRect: () => DOMRect;
|
|
26
|
-
matches: (selector: string | undefined) => boolean;
|
|
27
19
|
visible: () => boolean;
|
|
28
|
-
value: () => string | null;
|
|
29
|
-
disabled: () => string | null;
|
|
30
|
-
role: () => string | null;
|
|
31
|
-
label: () => string | null | undefined;
|
|
32
20
|
getId: () => string;
|
|
33
21
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
34
22
|
getOwnerDocument: () => Document;
|
|
35
23
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
36
24
|
getTagName: () => string;
|
|
25
|
+
tagName: () => string;
|
|
37
26
|
typeIn: (text: string) => Promise<void>;
|
|
27
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
38
28
|
getDOMNode: () => Element;
|
|
39
29
|
node: () => Element;
|
|
40
30
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -44,6 +34,7 @@ export declare const customMethods: {
|
|
|
44
34
|
getTextContent: () => string | null;
|
|
45
35
|
getParentNode: () => ParentNode | null;
|
|
46
36
|
parent: () => ParentNode | null;
|
|
37
|
+
getBoundingClientRect: () => DOMRect;
|
|
47
38
|
rect: () => DOMRect;
|
|
48
39
|
hasClass: (classname: string) => boolean;
|
|
49
40
|
containsFocus: () => boolean;
|
|
@@ -55,17 +46,25 @@ export declare const customMethods: {
|
|
|
55
46
|
exists: () => boolean;
|
|
56
47
|
text: () => string | null;
|
|
57
48
|
empty: () => boolean;
|
|
49
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
58
50
|
descendants: (selector: string) => Element[];
|
|
59
51
|
ancestors: (selector: string) => ParentNode[];
|
|
60
52
|
attribute: (qualifiedName: string) => string | null;
|
|
61
53
|
style: (property: string) => string;
|
|
62
54
|
classNames: () => string[];
|
|
55
|
+
id: () => string;
|
|
56
|
+
matches: (selector: string | undefined) => boolean;
|
|
63
57
|
checked: () => any;
|
|
64
58
|
selected: () => any;
|
|
59
|
+
disabled: () => string | null;
|
|
65
60
|
readonly: () => any;
|
|
61
|
+
role: () => string | null;
|
|
62
|
+
value: () => string | null;
|
|
63
|
+
label: () => string | null | undefined;
|
|
64
|
+
title: () => string | null | undefined;
|
|
65
|
+
children: (selector: string) => Element[];
|
|
66
66
|
parents: (selector: string) => ParentNode[];
|
|
67
67
|
} & {
|
|
68
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
69
68
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
70
69
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
71
70
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -103,6 +102,7 @@ export declare const customMethods: {
|
|
|
103
102
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
104
103
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
105
104
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
105
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
106
106
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
107
107
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
108
108
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -155,25 +155,15 @@ export declare const customMethods: {
|
|
|
155
155
|
toString: (maxLength?: number | undefined, options?: {
|
|
156
156
|
highlight: boolean;
|
|
157
157
|
} | undefined) => string;
|
|
158
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
159
|
-
children: (selector: string) => Element[];
|
|
160
|
-
title: () => string | null | undefined;
|
|
161
|
-
id: () => string;
|
|
162
|
-
tagName: () => string;
|
|
163
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
164
|
-
getBoundingClientRect: () => DOMRect;
|
|
165
|
-
matches: (selector: string | undefined) => boolean;
|
|
166
158
|
visible: () => boolean;
|
|
167
|
-
value: () => string | null;
|
|
168
|
-
disabled: () => string | null;
|
|
169
|
-
role: () => string | null;
|
|
170
|
-
label: () => string | null | undefined;
|
|
171
159
|
getId: () => string;
|
|
172
160
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
173
161
|
getOwnerDocument: () => Document;
|
|
174
162
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
175
163
|
getTagName: () => string;
|
|
164
|
+
tagName: () => string;
|
|
176
165
|
typeIn: (text: string) => Promise<void>;
|
|
166
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
177
167
|
getDOMNode: () => Element;
|
|
178
168
|
node: () => Element;
|
|
179
169
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -183,6 +173,7 @@ export declare const customMethods: {
|
|
|
183
173
|
getTextContent: () => string | null;
|
|
184
174
|
getParentNode: () => ParentNode | null;
|
|
185
175
|
parent: () => ParentNode | null;
|
|
176
|
+
getBoundingClientRect: () => DOMRect;
|
|
186
177
|
rect: () => DOMRect;
|
|
187
178
|
hasClass: (classname: string) => boolean;
|
|
188
179
|
containsFocus: () => boolean;
|
|
@@ -194,17 +185,25 @@ export declare const customMethods: {
|
|
|
194
185
|
exists: () => boolean;
|
|
195
186
|
text: () => string | null;
|
|
196
187
|
empty: () => boolean;
|
|
188
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
197
189
|
descendants: (selector: string) => Element[];
|
|
198
190
|
ancestors: (selector: string) => ParentNode[];
|
|
199
191
|
attribute: (qualifiedName: string) => string | null;
|
|
200
192
|
style: (property: string) => string;
|
|
201
193
|
classNames: () => string[];
|
|
194
|
+
id: () => string;
|
|
195
|
+
matches: (selector: string | undefined) => boolean;
|
|
202
196
|
checked: () => any;
|
|
203
197
|
selected: () => any;
|
|
198
|
+
disabled: () => string | null;
|
|
204
199
|
readonly: () => any;
|
|
200
|
+
role: () => string | null;
|
|
201
|
+
value: () => string | null;
|
|
202
|
+
label: () => string | null | undefined;
|
|
203
|
+
title: () => string | null | undefined;
|
|
204
|
+
children: (selector: string) => Element[];
|
|
205
205
|
parents: (selector: string) => ParentNode[];
|
|
206
206
|
} & {
|
|
207
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
208
207
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
209
208
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
210
209
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -242,6 +241,7 @@ export declare const customMethods: {
|
|
|
242
241
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
243
242
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
244
243
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
244
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
245
245
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
246
246
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
247
247
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -298,25 +298,15 @@ export declare const ToggleDetailsLocator: {
|
|
|
298
298
|
toString: (maxLength?: number | undefined, options?: {
|
|
299
299
|
highlight: boolean;
|
|
300
300
|
} | undefined) => string;
|
|
301
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
302
|
-
children: (selector: string) => Element[];
|
|
303
|
-
title: () => string | null | undefined;
|
|
304
|
-
id: () => string;
|
|
305
|
-
tagName: () => string;
|
|
306
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
307
|
-
getBoundingClientRect: () => DOMRect;
|
|
308
|
-
matches: (selector: string | undefined) => boolean;
|
|
309
301
|
visible: () => boolean;
|
|
310
|
-
value: () => string | null;
|
|
311
|
-
disabled: () => string | null;
|
|
312
|
-
role: () => string | null;
|
|
313
|
-
label: () => string | null | undefined;
|
|
314
302
|
getId: () => string;
|
|
315
303
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
316
304
|
getOwnerDocument: () => Document;
|
|
317
305
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
318
306
|
getTagName: () => string;
|
|
307
|
+
tagName: () => string;
|
|
319
308
|
typeIn: (text: string) => Promise<void>;
|
|
309
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
320
310
|
getDOMNode: () => Element;
|
|
321
311
|
node: () => Element;
|
|
322
312
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -326,6 +316,7 @@ export declare const ToggleDetailsLocator: {
|
|
|
326
316
|
getTextContent: () => string | null;
|
|
327
317
|
getParentNode: () => ParentNode | null;
|
|
328
318
|
parent: () => ParentNode | null;
|
|
319
|
+
getBoundingClientRect: () => DOMRect;
|
|
329
320
|
rect: () => DOMRect;
|
|
330
321
|
hasClass: (classname: string) => boolean;
|
|
331
322
|
containsFocus: () => boolean;
|
|
@@ -337,17 +328,25 @@ export declare const ToggleDetailsLocator: {
|
|
|
337
328
|
exists: () => boolean;
|
|
338
329
|
text: () => string | null;
|
|
339
330
|
empty: () => boolean;
|
|
331
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
340
332
|
descendants: (selector: string) => Element[];
|
|
341
333
|
ancestors: (selector: string) => ParentNode[];
|
|
342
334
|
attribute: (qualifiedName: string) => string | null;
|
|
343
335
|
style: (property: string) => string;
|
|
344
336
|
classNames: () => string[];
|
|
337
|
+
id: () => string;
|
|
338
|
+
matches: (selector: string | undefined) => boolean;
|
|
345
339
|
checked: () => any;
|
|
346
340
|
selected: () => any;
|
|
341
|
+
disabled: () => string | null;
|
|
347
342
|
readonly: () => any;
|
|
343
|
+
role: () => string | null;
|
|
344
|
+
value: () => string | null;
|
|
345
|
+
label: () => string | null | undefined;
|
|
346
|
+
title: () => string | null | undefined;
|
|
347
|
+
children: (selector: string) => Element[];
|
|
348
348
|
parents: (selector: string) => ParentNode[];
|
|
349
349
|
} & {
|
|
350
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
351
350
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
352
351
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
353
352
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -385,6 +384,7 @@ export declare const ToggleDetailsLocator: {
|
|
|
385
384
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
386
385
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
387
386
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
387
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
388
388
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
389
389
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
390
390
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -437,25 +437,15 @@ export declare const ToggleDetailsLocator: {
|
|
|
437
437
|
toString: (maxLength?: number | undefined, options?: {
|
|
438
438
|
highlight: boolean;
|
|
439
439
|
} | undefined) => string;
|
|
440
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
441
|
-
children: (selector: string) => Element[];
|
|
442
|
-
title: () => string | null | undefined;
|
|
443
|
-
id: () => string;
|
|
444
|
-
tagName: () => string;
|
|
445
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
446
|
-
getBoundingClientRect: () => DOMRect;
|
|
447
|
-
matches: (selector: string | undefined) => boolean;
|
|
448
440
|
visible: () => boolean;
|
|
449
|
-
value: () => string | null;
|
|
450
|
-
disabled: () => string | null;
|
|
451
|
-
role: () => string | null;
|
|
452
|
-
label: () => string | null | undefined;
|
|
453
441
|
getId: () => string;
|
|
454
442
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
455
443
|
getOwnerDocument: () => Document;
|
|
456
444
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
457
445
|
getTagName: () => string;
|
|
446
|
+
tagName: () => string;
|
|
458
447
|
typeIn: (text: string) => Promise<void>;
|
|
448
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
459
449
|
getDOMNode: () => Element;
|
|
460
450
|
node: () => Element;
|
|
461
451
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -465,6 +455,7 @@ export declare const ToggleDetailsLocator: {
|
|
|
465
455
|
getTextContent: () => string | null;
|
|
466
456
|
getParentNode: () => ParentNode | null;
|
|
467
457
|
parent: () => ParentNode | null;
|
|
458
|
+
getBoundingClientRect: () => DOMRect;
|
|
468
459
|
rect: () => DOMRect;
|
|
469
460
|
hasClass: (classname: string) => boolean;
|
|
470
461
|
containsFocus: () => boolean;
|
|
@@ -476,17 +467,25 @@ export declare const ToggleDetailsLocator: {
|
|
|
476
467
|
exists: () => boolean;
|
|
477
468
|
text: () => string | null;
|
|
478
469
|
empty: () => boolean;
|
|
470
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
479
471
|
descendants: (selector: string) => Element[];
|
|
480
472
|
ancestors: (selector: string) => ParentNode[];
|
|
481
473
|
attribute: (qualifiedName: string) => string | null;
|
|
482
474
|
style: (property: string) => string;
|
|
483
475
|
classNames: () => string[];
|
|
476
|
+
id: () => string;
|
|
477
|
+
matches: (selector: string | undefined) => boolean;
|
|
484
478
|
checked: () => any;
|
|
485
479
|
selected: () => any;
|
|
480
|
+
disabled: () => string | null;
|
|
486
481
|
readonly: () => any;
|
|
482
|
+
role: () => string | null;
|
|
483
|
+
value: () => string | null;
|
|
484
|
+
label: () => string | null | undefined;
|
|
485
|
+
title: () => string | null | undefined;
|
|
486
|
+
children: (selector: string) => Element[];
|
|
487
487
|
parents: (selector: string) => ParentNode[];
|
|
488
488
|
} & {
|
|
489
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
490
489
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
491
490
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
492
491
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -524,6 +523,7 @@ export declare const ToggleDetailsLocator: {
|
|
|
524
523
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
525
524
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
526
525
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
526
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
527
527
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
528
528
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
529
529
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -583,25 +583,15 @@ export declare const ToggleDetailsLocator: {
|
|
|
583
583
|
toString: (maxLength?: number | undefined, options?: {
|
|
584
584
|
highlight: boolean;
|
|
585
585
|
} | undefined) => string;
|
|
586
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
587
|
-
children: (selector: string) => Element[];
|
|
588
|
-
title: () => string | null | undefined;
|
|
589
|
-
id: () => string;
|
|
590
|
-
tagName: () => string;
|
|
591
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
592
|
-
getBoundingClientRect: () => DOMRect;
|
|
593
|
-
matches: (selector: string | undefined) => boolean;
|
|
594
586
|
visible: () => boolean;
|
|
595
|
-
value: () => string | null;
|
|
596
|
-
disabled: () => string | null;
|
|
597
|
-
role: () => string | null;
|
|
598
|
-
label: () => string | null | undefined;
|
|
599
587
|
getId: () => string;
|
|
600
588
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
601
589
|
getOwnerDocument: () => Document;
|
|
602
590
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
603
591
|
getTagName: () => string;
|
|
592
|
+
tagName: () => string;
|
|
604
593
|
typeIn: (text: string) => Promise<void>;
|
|
594
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
605
595
|
getDOMNode: () => Element;
|
|
606
596
|
node: () => Element;
|
|
607
597
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -611,6 +601,7 @@ export declare const ToggleDetailsLocator: {
|
|
|
611
601
|
getTextContent: () => string | null;
|
|
612
602
|
getParentNode: () => ParentNode | null;
|
|
613
603
|
parent: () => ParentNode | null;
|
|
604
|
+
getBoundingClientRect: () => DOMRect;
|
|
614
605
|
rect: () => DOMRect;
|
|
615
606
|
hasClass: (classname: string) => boolean;
|
|
616
607
|
containsFocus: () => boolean;
|
|
@@ -622,17 +613,25 @@ export declare const ToggleDetailsLocator: {
|
|
|
622
613
|
exists: () => boolean;
|
|
623
614
|
text: () => string | null;
|
|
624
615
|
empty: () => boolean;
|
|
616
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
625
617
|
descendants: (selector: string) => Element[];
|
|
626
618
|
ancestors: (selector: string) => ParentNode[];
|
|
627
619
|
attribute: (qualifiedName: string) => string | null;
|
|
628
620
|
style: (property: string) => string;
|
|
629
621
|
classNames: () => string[];
|
|
622
|
+
id: () => string;
|
|
623
|
+
matches: (selector: string | undefined) => boolean;
|
|
630
624
|
checked: () => any;
|
|
631
625
|
selected: () => any;
|
|
626
|
+
disabled: () => string | null;
|
|
632
627
|
readonly: () => any;
|
|
628
|
+
role: () => string | null;
|
|
629
|
+
value: () => string | null;
|
|
630
|
+
label: () => string | null | undefined;
|
|
631
|
+
title: () => string | null | undefined;
|
|
632
|
+
children: (selector: string) => Element[];
|
|
633
633
|
parents: (selector: string) => ParentNode[];
|
|
634
634
|
} & {
|
|
635
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
636
635
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
637
636
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
638
637
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -670,6 +669,7 @@ export declare const ToggleDetailsLocator: {
|
|
|
670
669
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
671
670
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
672
671
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
672
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
673
673
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
674
674
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
675
675
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -723,25 +723,15 @@ export declare const ToggleDetailsLocator: {
|
|
|
723
723
|
toString: (maxLength?: number | undefined, options?: {
|
|
724
724
|
highlight: boolean;
|
|
725
725
|
} | undefined) => string;
|
|
726
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
727
|
-
children: (selector: string) => Element[];
|
|
728
|
-
title: () => string | null | undefined;
|
|
729
|
-
id: () => string;
|
|
730
|
-
tagName: () => string;
|
|
731
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
732
|
-
getBoundingClientRect: () => DOMRect;
|
|
733
|
-
matches: (selector: string | undefined) => boolean;
|
|
734
726
|
visible: () => boolean;
|
|
735
|
-
value: () => string | null;
|
|
736
|
-
disabled: () => string | null;
|
|
737
|
-
role: () => string | null;
|
|
738
|
-
label: () => string | null | undefined;
|
|
739
727
|
getId: () => string;
|
|
740
728
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
741
729
|
getOwnerDocument: () => Document;
|
|
742
730
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
743
731
|
getTagName: () => string;
|
|
732
|
+
tagName: () => string;
|
|
744
733
|
typeIn: (text: string) => Promise<void>;
|
|
734
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
745
735
|
getDOMNode: () => Element;
|
|
746
736
|
node: () => Element;
|
|
747
737
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -751,6 +741,7 @@ export declare const ToggleDetailsLocator: {
|
|
|
751
741
|
getTextContent: () => string | null;
|
|
752
742
|
getParentNode: () => ParentNode | null;
|
|
753
743
|
parent: () => ParentNode | null;
|
|
744
|
+
getBoundingClientRect: () => DOMRect;
|
|
754
745
|
rect: () => DOMRect;
|
|
755
746
|
hasClass: (classname: string) => boolean;
|
|
756
747
|
containsFocus: () => boolean;
|
|
@@ -762,17 +753,25 @@ export declare const ToggleDetailsLocator: {
|
|
|
762
753
|
exists: () => boolean;
|
|
763
754
|
text: () => string | null;
|
|
764
755
|
empty: () => boolean;
|
|
756
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
765
757
|
descendants: (selector: string) => Element[];
|
|
766
758
|
ancestors: (selector: string) => ParentNode[];
|
|
767
759
|
attribute: (qualifiedName: string) => string | null;
|
|
768
760
|
style: (property: string) => string;
|
|
769
761
|
classNames: () => string[];
|
|
762
|
+
id: () => string;
|
|
763
|
+
matches: (selector: string | undefined) => boolean;
|
|
770
764
|
checked: () => any;
|
|
771
765
|
selected: () => any;
|
|
766
|
+
disabled: () => string | null;
|
|
772
767
|
readonly: () => any;
|
|
768
|
+
role: () => string | null;
|
|
769
|
+
value: () => string | null;
|
|
770
|
+
label: () => string | null | undefined;
|
|
771
|
+
title: () => string | null | undefined;
|
|
772
|
+
children: (selector: string) => Element[];
|
|
773
773
|
parents: (selector: string) => ParentNode[];
|
|
774
774
|
} & {
|
|
775
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
776
775
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
777
776
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
778
777
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -810,6 +809,7 @@ export declare const ToggleDetailsLocator: {
|
|
|
810
809
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
811
810
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
812
811
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
812
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
813
813
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
814
814
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
815
815
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -862,25 +862,15 @@ export declare const ToggleDetailsLocator: {
|
|
|
862
862
|
toString: (maxLength?: number | undefined, options?: {
|
|
863
863
|
highlight: boolean;
|
|
864
864
|
} | undefined) => string;
|
|
865
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
866
|
-
children: (selector: string) => Element[];
|
|
867
|
-
title: () => string | null | undefined;
|
|
868
|
-
id: () => string;
|
|
869
|
-
tagName: () => string;
|
|
870
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
871
|
-
getBoundingClientRect: () => DOMRect;
|
|
872
|
-
matches: (selector: string | undefined) => boolean;
|
|
873
865
|
visible: () => boolean;
|
|
874
|
-
value: () => string | null;
|
|
875
|
-
disabled: () => string | null;
|
|
876
|
-
role: () => string | null;
|
|
877
|
-
label: () => string | null | undefined;
|
|
878
866
|
getId: () => string;
|
|
879
867
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
880
868
|
getOwnerDocument: () => Document;
|
|
881
869
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
882
870
|
getTagName: () => string;
|
|
871
|
+
tagName: () => string;
|
|
883
872
|
typeIn: (text: string) => Promise<void>;
|
|
873
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
884
874
|
getDOMNode: () => Element;
|
|
885
875
|
node: () => Element;
|
|
886
876
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -890,6 +880,7 @@ export declare const ToggleDetailsLocator: {
|
|
|
890
880
|
getTextContent: () => string | null;
|
|
891
881
|
getParentNode: () => ParentNode | null;
|
|
892
882
|
parent: () => ParentNode | null;
|
|
883
|
+
getBoundingClientRect: () => DOMRect;
|
|
893
884
|
rect: () => DOMRect;
|
|
894
885
|
hasClass: (classname: string) => boolean;
|
|
895
886
|
containsFocus: () => boolean;
|
|
@@ -901,17 +892,25 @@ export declare const ToggleDetailsLocator: {
|
|
|
901
892
|
exists: () => boolean;
|
|
902
893
|
text: () => string | null;
|
|
903
894
|
empty: () => boolean;
|
|
895
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
904
896
|
descendants: (selector: string) => Element[];
|
|
905
897
|
ancestors: (selector: string) => ParentNode[];
|
|
906
898
|
attribute: (qualifiedName: string) => string | null;
|
|
907
899
|
style: (property: string) => string;
|
|
908
900
|
classNames: () => string[];
|
|
901
|
+
id: () => string;
|
|
902
|
+
matches: (selector: string | undefined) => boolean;
|
|
909
903
|
checked: () => any;
|
|
910
904
|
selected: () => any;
|
|
905
|
+
disabled: () => string | null;
|
|
911
906
|
readonly: () => any;
|
|
907
|
+
role: () => string | null;
|
|
908
|
+
value: () => string | null;
|
|
909
|
+
label: () => string | null | undefined;
|
|
910
|
+
title: () => string | null | undefined;
|
|
911
|
+
children: (selector: string) => Element[];
|
|
912
912
|
parents: (selector: string) => ParentNode[];
|
|
913
913
|
} & {
|
|
914
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
915
914
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
916
915
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
917
916
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -949,6 +948,7 @@ export declare const ToggleDetailsLocator: {
|
|
|
949
948
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
950
949
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
951
950
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
951
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
952
952
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
953
953
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
954
954
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1002,25 +1002,15 @@ export declare const ToggleDetailsLocator: {
|
|
|
1002
1002
|
toString: (maxLength?: number | undefined, options?: {
|
|
1003
1003
|
highlight: boolean;
|
|
1004
1004
|
} | undefined) => string;
|
|
1005
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1006
|
-
children: (selector: string) => Element[];
|
|
1007
|
-
title: () => string | null | undefined;
|
|
1008
|
-
id: () => string;
|
|
1009
|
-
tagName: () => string;
|
|
1010
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1011
|
-
getBoundingClientRect: () => DOMRect;
|
|
1012
|
-
matches: (selector: string | undefined) => boolean;
|
|
1013
1005
|
visible: () => boolean;
|
|
1014
|
-
value: () => string | null;
|
|
1015
|
-
disabled: () => string | null;
|
|
1016
|
-
role: () => string | null;
|
|
1017
|
-
label: () => string | null | undefined;
|
|
1018
1006
|
getId: () => string;
|
|
1019
1007
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1020
1008
|
getOwnerDocument: () => Document;
|
|
1021
1009
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1022
1010
|
getTagName: () => string;
|
|
1011
|
+
tagName: () => string;
|
|
1023
1012
|
typeIn: (text: string) => Promise<void>;
|
|
1013
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1024
1014
|
getDOMNode: () => Element;
|
|
1025
1015
|
node: () => Element;
|
|
1026
1016
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1030,6 +1020,7 @@ export declare const ToggleDetailsLocator: {
|
|
|
1030
1020
|
getTextContent: () => string | null;
|
|
1031
1021
|
getParentNode: () => ParentNode | null;
|
|
1032
1022
|
parent: () => ParentNode | null;
|
|
1023
|
+
getBoundingClientRect: () => DOMRect;
|
|
1033
1024
|
rect: () => DOMRect;
|
|
1034
1025
|
hasClass: (classname: string) => boolean;
|
|
1035
1026
|
containsFocus: () => boolean;
|
|
@@ -1041,17 +1032,25 @@ export declare const ToggleDetailsLocator: {
|
|
|
1041
1032
|
exists: () => boolean;
|
|
1042
1033
|
text: () => string | null;
|
|
1043
1034
|
empty: () => boolean;
|
|
1035
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1044
1036
|
descendants: (selector: string) => Element[];
|
|
1045
1037
|
ancestors: (selector: string) => ParentNode[];
|
|
1046
1038
|
attribute: (qualifiedName: string) => string | null;
|
|
1047
1039
|
style: (property: string) => string;
|
|
1048
1040
|
classNames: () => string[];
|
|
1041
|
+
id: () => string;
|
|
1042
|
+
matches: (selector: string | undefined) => boolean;
|
|
1049
1043
|
checked: () => any;
|
|
1050
1044
|
selected: () => any;
|
|
1045
|
+
disabled: () => string | null;
|
|
1051
1046
|
readonly: () => any;
|
|
1047
|
+
role: () => string | null;
|
|
1048
|
+
value: () => string | null;
|
|
1049
|
+
label: () => string | null | undefined;
|
|
1050
|
+
title: () => string | null | undefined;
|
|
1051
|
+
children: (selector: string) => Element[];
|
|
1052
1052
|
parents: (selector: string) => ParentNode[];
|
|
1053
1053
|
} & {
|
|
1054
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1055
1054
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1056
1055
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1057
1056
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1089,6 +1088,7 @@ export declare const ToggleDetailsLocator: {
|
|
|
1089
1088
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1090
1089
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1091
1090
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1091
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1092
1092
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1093
1093
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1094
1094
|
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 ToggleDetailsLocator: {
|
|
|
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 ToggleDetailsLocator: {
|
|
|
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 ToggleDetailsLocator: {
|
|
|
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 ToggleDetailsLocator: {
|
|
|
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 ToggleDetailsLocator: {
|
|
|
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 ToggleDetailsLocator: {
|
|
|
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 ToggleDetailsLocator: {
|
|
|
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 ToggleDetailsLocator: {
|
|
|
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 ToggleDetailsLocator: {
|
|
|
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 ToggleDetailsLocator: {
|
|
|
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 ToggleDetailsLocator: {
|
|
|
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 ToggleDetailsLocator: {
|
|
|
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>;
|
|
@@ -1561,25 +1561,15 @@ export declare const ToggleDetailsLocator: {
|
|
|
1561
1561
|
toString: (maxLength?: number | undefined, options?: {
|
|
1562
1562
|
highlight: boolean;
|
|
1563
1563
|
} | undefined) => string;
|
|
1564
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1565
|
-
children: (selector: string) => Element[];
|
|
1566
|
-
title: () => string | null | undefined;
|
|
1567
|
-
id: () => string;
|
|
1568
|
-
tagName: () => string;
|
|
1569
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1570
|
-
getBoundingClientRect: () => DOMRect;
|
|
1571
|
-
matches: (selector: string | undefined) => boolean;
|
|
1572
1564
|
visible: () => boolean;
|
|
1573
|
-
value: () => string | null;
|
|
1574
|
-
disabled: () => string | null;
|
|
1575
|
-
role: () => string | null;
|
|
1576
|
-
label: () => string | null | undefined;
|
|
1577
1565
|
getId: () => string;
|
|
1578
1566
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1579
1567
|
getOwnerDocument: () => Document;
|
|
1580
1568
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1581
1569
|
getTagName: () => string;
|
|
1570
|
+
tagName: () => string;
|
|
1582
1571
|
typeIn: (text: string) => Promise<void>;
|
|
1572
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1583
1573
|
getDOMNode: () => Element;
|
|
1584
1574
|
node: () => Element;
|
|
1585
1575
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1589,6 +1579,7 @@ export declare const ToggleDetailsLocator: {
|
|
|
1589
1579
|
getTextContent: () => string | null;
|
|
1590
1580
|
getParentNode: () => ParentNode | null;
|
|
1591
1581
|
parent: () => ParentNode | null;
|
|
1582
|
+
getBoundingClientRect: () => DOMRect;
|
|
1592
1583
|
rect: () => DOMRect;
|
|
1593
1584
|
hasClass: (classname: string) => boolean;
|
|
1594
1585
|
containsFocus: () => boolean;
|
|
@@ -1600,17 +1591,25 @@ export declare const ToggleDetailsLocator: {
|
|
|
1600
1591
|
exists: () => boolean;
|
|
1601
1592
|
text: () => string | null;
|
|
1602
1593
|
empty: () => boolean;
|
|
1594
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1603
1595
|
descendants: (selector: string) => Element[];
|
|
1604
1596
|
ancestors: (selector: string) => ParentNode[];
|
|
1605
1597
|
attribute: (qualifiedName: string) => string | null;
|
|
1606
1598
|
style: (property: string) => string;
|
|
1607
1599
|
classNames: () => string[];
|
|
1600
|
+
id: () => string;
|
|
1601
|
+
matches: (selector: string | undefined) => boolean;
|
|
1608
1602
|
checked: () => any;
|
|
1609
1603
|
selected: () => any;
|
|
1604
|
+
disabled: () => string | null;
|
|
1610
1605
|
readonly: () => any;
|
|
1606
|
+
role: () => string | null;
|
|
1607
|
+
value: () => string | null;
|
|
1608
|
+
label: () => string | null | undefined;
|
|
1609
|
+
title: () => string | null | undefined;
|
|
1610
|
+
children: (selector: string) => Element[];
|
|
1611
1611
|
parents: (selector: string) => ParentNode[];
|
|
1612
1612
|
} & {
|
|
1613
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1614
1613
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1615
1614
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1616
1615
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1648,6 +1647,7 @@ export declare const ToggleDetailsLocator: {
|
|
|
1648
1647
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1649
1648
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1650
1649
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1650
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1651
1651
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1652
1652
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1653
1653
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1700,25 +1700,15 @@ export declare const ToggleDetailsLocator: {
|
|
|
1700
1700
|
toString: (maxLength?: number | undefined, options?: {
|
|
1701
1701
|
highlight: boolean;
|
|
1702
1702
|
} | undefined) => string;
|
|
1703
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1704
|
-
children: (selector: string) => Element[];
|
|
1705
|
-
title: () => string | null | undefined;
|
|
1706
|
-
id: () => string;
|
|
1707
|
-
tagName: () => string;
|
|
1708
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1709
|
-
getBoundingClientRect: () => DOMRect;
|
|
1710
|
-
matches: (selector: string | undefined) => boolean;
|
|
1711
1703
|
visible: () => boolean;
|
|
1712
|
-
value: () => string | null;
|
|
1713
|
-
disabled: () => string | null;
|
|
1714
|
-
role: () => string | null;
|
|
1715
|
-
label: () => string | null | undefined;
|
|
1716
1704
|
getId: () => string;
|
|
1717
1705
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1718
1706
|
getOwnerDocument: () => Document;
|
|
1719
1707
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1720
1708
|
getTagName: () => string;
|
|
1709
|
+
tagName: () => string;
|
|
1721
1710
|
typeIn: (text: string) => Promise<void>;
|
|
1711
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1722
1712
|
getDOMNode: () => Element;
|
|
1723
1713
|
node: () => Element;
|
|
1724
1714
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1728,6 +1718,7 @@ export declare const ToggleDetailsLocator: {
|
|
|
1728
1718
|
getTextContent: () => string | null;
|
|
1729
1719
|
getParentNode: () => ParentNode | null;
|
|
1730
1720
|
parent: () => ParentNode | null;
|
|
1721
|
+
getBoundingClientRect: () => DOMRect;
|
|
1731
1722
|
rect: () => DOMRect;
|
|
1732
1723
|
hasClass: (classname: string) => boolean;
|
|
1733
1724
|
containsFocus: () => boolean;
|
|
@@ -1739,17 +1730,25 @@ export declare const ToggleDetailsLocator: {
|
|
|
1739
1730
|
exists: () => boolean;
|
|
1740
1731
|
text: () => string | null;
|
|
1741
1732
|
empty: () => boolean;
|
|
1733
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1742
1734
|
descendants: (selector: string) => Element[];
|
|
1743
1735
|
ancestors: (selector: string) => ParentNode[];
|
|
1744
1736
|
attribute: (qualifiedName: string) => string | null;
|
|
1745
1737
|
style: (property: string) => string;
|
|
1746
1738
|
classNames: () => string[];
|
|
1739
|
+
id: () => string;
|
|
1740
|
+
matches: (selector: string | undefined) => boolean;
|
|
1747
1741
|
checked: () => any;
|
|
1748
1742
|
selected: () => any;
|
|
1743
|
+
disabled: () => string | null;
|
|
1749
1744
|
readonly: () => any;
|
|
1745
|
+
role: () => string | null;
|
|
1746
|
+
value: () => string | null;
|
|
1747
|
+
label: () => string | null | undefined;
|
|
1748
|
+
title: () => string | null | undefined;
|
|
1749
|
+
children: (selector: string) => Element[];
|
|
1750
1750
|
parents: (selector: string) => ParentNode[];
|
|
1751
1751
|
} & {
|
|
1752
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1753
1752
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1754
1753
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1755
1754
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1787,6 +1786,7 @@ export declare const ToggleDetailsLocator: {
|
|
|
1787
1786
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1788
1787
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1789
1788
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1789
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1790
1790
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1791
1791
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1792
1792
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1840,25 +1840,15 @@ export declare const ToggleDetailsLocator: {
|
|
|
1840
1840
|
toString: (maxLength?: number | undefined, options?: {
|
|
1841
1841
|
highlight: boolean;
|
|
1842
1842
|
} | undefined) => string;
|
|
1843
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1844
|
-
children: (selector: string) => Element[];
|
|
1845
|
-
title: () => string | null | undefined;
|
|
1846
|
-
id: () => string;
|
|
1847
|
-
tagName: () => string;
|
|
1848
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1849
|
-
getBoundingClientRect: () => DOMRect;
|
|
1850
|
-
matches: (selector: string | undefined) => boolean;
|
|
1851
1843
|
visible: () => boolean;
|
|
1852
|
-
value: () => string | null;
|
|
1853
|
-
disabled: () => string | null;
|
|
1854
|
-
role: () => string | null;
|
|
1855
|
-
label: () => string | null | undefined;
|
|
1856
1844
|
getId: () => string;
|
|
1857
1845
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1858
1846
|
getOwnerDocument: () => Document;
|
|
1859
1847
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1860
1848
|
getTagName: () => string;
|
|
1849
|
+
tagName: () => string;
|
|
1861
1850
|
typeIn: (text: string) => Promise<void>;
|
|
1851
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1862
1852
|
getDOMNode: () => Element;
|
|
1863
1853
|
node: () => Element;
|
|
1864
1854
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1868,6 +1858,7 @@ export declare const ToggleDetailsLocator: {
|
|
|
1868
1858
|
getTextContent: () => string | null;
|
|
1869
1859
|
getParentNode: () => ParentNode | null;
|
|
1870
1860
|
parent: () => ParentNode | null;
|
|
1861
|
+
getBoundingClientRect: () => DOMRect;
|
|
1871
1862
|
rect: () => DOMRect;
|
|
1872
1863
|
hasClass: (classname: string) => boolean;
|
|
1873
1864
|
containsFocus: () => boolean;
|
|
@@ -1879,17 +1870,25 @@ export declare const ToggleDetailsLocator: {
|
|
|
1879
1870
|
exists: () => boolean;
|
|
1880
1871
|
text: () => string | null;
|
|
1881
1872
|
empty: () => boolean;
|
|
1873
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1882
1874
|
descendants: (selector: string) => Element[];
|
|
1883
1875
|
ancestors: (selector: string) => ParentNode[];
|
|
1884
1876
|
attribute: (qualifiedName: string) => string | null;
|
|
1885
1877
|
style: (property: string) => string;
|
|
1886
1878
|
classNames: () => string[];
|
|
1879
|
+
id: () => string;
|
|
1880
|
+
matches: (selector: string | undefined) => boolean;
|
|
1887
1881
|
checked: () => any;
|
|
1888
1882
|
selected: () => any;
|
|
1883
|
+
disabled: () => string | null;
|
|
1889
1884
|
readonly: () => any;
|
|
1885
|
+
role: () => string | null;
|
|
1886
|
+
value: () => string | null;
|
|
1887
|
+
label: () => string | null | undefined;
|
|
1888
|
+
title: () => string | null | undefined;
|
|
1889
|
+
children: (selector: string) => Element[];
|
|
1890
1890
|
parents: (selector: string) => ParentNode[];
|
|
1891
1891
|
} & {
|
|
1892
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1893
1892
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1894
1893
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1895
1894
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1927,6 +1926,7 @@ export declare const ToggleDetailsLocator: {
|
|
|
1927
1926
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1928
1927
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1929
1928
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1929
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1930
1930
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1931
1931
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1932
1932
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1980,25 +1980,15 @@ export declare const ToggleDetailsLocator: {
|
|
|
1980
1980
|
toString: (maxLength?: number | undefined, options?: {
|
|
1981
1981
|
highlight: boolean;
|
|
1982
1982
|
} | undefined) => string;
|
|
1983
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1984
|
-
children: (selector: string) => Element[];
|
|
1985
|
-
title: () => string | null | undefined;
|
|
1986
|
-
id: () => string;
|
|
1987
|
-
tagName: () => string;
|
|
1988
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1989
|
-
getBoundingClientRect: () => DOMRect;
|
|
1990
|
-
matches: (selector: string | undefined) => boolean;
|
|
1991
1983
|
visible: () => boolean;
|
|
1992
|
-
value: () => string | null;
|
|
1993
|
-
disabled: () => string | null;
|
|
1994
|
-
role: () => string | null;
|
|
1995
|
-
label: () => string | null | undefined;
|
|
1996
1984
|
getId: () => string;
|
|
1997
1985
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1998
1986
|
getOwnerDocument: () => Document;
|
|
1999
1987
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
2000
1988
|
getTagName: () => string;
|
|
1989
|
+
tagName: () => string;
|
|
2001
1990
|
typeIn: (text: string) => Promise<void>;
|
|
1991
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
2002
1992
|
getDOMNode: () => Element;
|
|
2003
1993
|
node: () => Element;
|
|
2004
1994
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -2008,6 +1998,7 @@ export declare const ToggleDetailsLocator: {
|
|
|
2008
1998
|
getTextContent: () => string | null;
|
|
2009
1999
|
getParentNode: () => ParentNode | null;
|
|
2010
2000
|
parent: () => ParentNode | null;
|
|
2001
|
+
getBoundingClientRect: () => DOMRect;
|
|
2011
2002
|
rect: () => DOMRect;
|
|
2012
2003
|
hasClass: (classname: string) => boolean;
|
|
2013
2004
|
containsFocus: () => boolean;
|
|
@@ -2019,17 +2010,25 @@ export declare const ToggleDetailsLocator: {
|
|
|
2019
2010
|
exists: () => boolean;
|
|
2020
2011
|
text: () => string | null;
|
|
2021
2012
|
empty: () => boolean;
|
|
2013
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2022
2014
|
descendants: (selector: string) => Element[];
|
|
2023
2015
|
ancestors: (selector: string) => ParentNode[];
|
|
2024
2016
|
attribute: (qualifiedName: string) => string | null;
|
|
2025
2017
|
style: (property: string) => string;
|
|
2026
2018
|
classNames: () => string[];
|
|
2019
|
+
id: () => string;
|
|
2020
|
+
matches: (selector: string | undefined) => boolean;
|
|
2027
2021
|
checked: () => any;
|
|
2028
2022
|
selected: () => any;
|
|
2023
|
+
disabled: () => string | null;
|
|
2029
2024
|
readonly: () => any;
|
|
2025
|
+
role: () => string | null;
|
|
2026
|
+
value: () => string | null;
|
|
2027
|
+
label: () => string | null | undefined;
|
|
2028
|
+
title: () => string | null | undefined;
|
|
2029
|
+
children: (selector: string) => Element[];
|
|
2030
2030
|
parents: (selector: string) => ParentNode[];
|
|
2031
2031
|
} & {
|
|
2032
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2033
2032
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2034
2033
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2035
2034
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2067,6 +2066,7 @@ export declare const ToggleDetailsLocator: {
|
|
|
2067
2066
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2068
2067
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2069
2068
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2069
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2070
2070
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2071
2071
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2072
2072
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2119,25 +2119,15 @@ export declare const ToggleDetailsLocator: {
|
|
|
2119
2119
|
toString: (maxLength?: number | undefined, options?: {
|
|
2120
2120
|
highlight: boolean;
|
|
2121
2121
|
} | undefined) => string;
|
|
2122
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2123
|
-
children: (selector: string) => Element[];
|
|
2124
|
-
title: () => string | null | undefined;
|
|
2125
|
-
id: () => string;
|
|
2126
|
-
tagName: () => string;
|
|
2127
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
2128
|
-
getBoundingClientRect: () => DOMRect;
|
|
2129
|
-
matches: (selector: string | undefined) => boolean;
|
|
2130
2122
|
visible: () => boolean;
|
|
2131
|
-
value: () => string | null;
|
|
2132
|
-
disabled: () => string | null;
|
|
2133
|
-
role: () => string | null;
|
|
2134
|
-
label: () => string | null | undefined;
|
|
2135
2123
|
getId: () => string;
|
|
2136
2124
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
2137
2125
|
getOwnerDocument: () => Document;
|
|
2138
2126
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
2139
2127
|
getTagName: () => string;
|
|
2128
|
+
tagName: () => string;
|
|
2140
2129
|
typeIn: (text: string) => Promise<void>;
|
|
2130
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
2141
2131
|
getDOMNode: () => Element;
|
|
2142
2132
|
node: () => Element;
|
|
2143
2133
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -2147,6 +2137,7 @@ export declare const ToggleDetailsLocator: {
|
|
|
2147
2137
|
getTextContent: () => string | null;
|
|
2148
2138
|
getParentNode: () => ParentNode | null;
|
|
2149
2139
|
parent: () => ParentNode | null;
|
|
2140
|
+
getBoundingClientRect: () => DOMRect;
|
|
2150
2141
|
rect: () => DOMRect;
|
|
2151
2142
|
hasClass: (classname: string) => boolean;
|
|
2152
2143
|
containsFocus: () => boolean;
|
|
@@ -2158,17 +2149,25 @@ export declare const ToggleDetailsLocator: {
|
|
|
2158
2149
|
exists: () => boolean;
|
|
2159
2150
|
text: () => string | null;
|
|
2160
2151
|
empty: () => boolean;
|
|
2152
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
2161
2153
|
descendants: (selector: string) => Element[];
|
|
2162
2154
|
ancestors: (selector: string) => ParentNode[];
|
|
2163
2155
|
attribute: (qualifiedName: string) => string | null;
|
|
2164
2156
|
style: (property: string) => string;
|
|
2165
2157
|
classNames: () => string[];
|
|
2158
|
+
id: () => string;
|
|
2159
|
+
matches: (selector: string | undefined) => boolean;
|
|
2166
2160
|
checked: () => any;
|
|
2167
2161
|
selected: () => any;
|
|
2162
|
+
disabled: () => string | null;
|
|
2168
2163
|
readonly: () => any;
|
|
2164
|
+
role: () => string | null;
|
|
2165
|
+
value: () => string | null;
|
|
2166
|
+
label: () => string | null | undefined;
|
|
2167
|
+
title: () => string | null | undefined;
|
|
2168
|
+
children: (selector: string) => Element[];
|
|
2169
2169
|
parents: (selector: string) => ParentNode[];
|
|
2170
2170
|
} & {
|
|
2171
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2172
2171
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2173
2172
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2174
2173
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -2206,6 +2205,7 @@ export declare const ToggleDetailsLocator: {
|
|
|
2206
2205
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2207
2206
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2208
2207
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2208
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2209
2209
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2210
2210
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
2211
2211
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|