@instructure/ui-list 8.13.1-snapshot.9 → 8.14.1-snapshot.15
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/es/InlineList/InlineListItem/InlineListItemLocator.js +2 -1
- package/es/InlineList/InlineListItem/index.js +19 -15
- package/es/InlineList/InlineListItem/props.js +0 -24
- package/es/InlineList/InlineListLocator.js +2 -1
- package/es/InlineList/__examples__/InlineList.examples.js +1 -1
- package/es/InlineList/index.js +1 -2
- package/es/InlineList/props.js +0 -17
- package/es/List/ListItem/index.js +19 -15
- package/es/List/ListItem/props.js +0 -24
- package/es/List/ListLocator.js +4 -2
- package/es/List/__examples__/List.examples.js +1 -1
- package/es/List/index.js +16 -13
- package/es/List/props.js +0 -25
- package/lib/InlineList/InlineListItem/InlineListItemLocator.js +1 -0
- package/lib/InlineList/InlineListItem/index.js +19 -15
- package/lib/InlineList/InlineListItem/props.js +0 -24
- package/lib/InlineList/InlineListLocator.js +1 -0
- package/lib/InlineList/__examples__/InlineList.examples.js +1 -1
- package/lib/InlineList/index.js +1 -2
- package/lib/InlineList/props.js +0 -17
- package/lib/List/ListItem/index.js +19 -15
- package/lib/List/ListItem/props.js +0 -24
- package/lib/List/ListLocator.js +3 -1
- package/lib/List/__examples__/List.examples.js +1 -1
- package/lib/List/index.js +16 -13
- package/lib/List/props.js +0 -25
- package/package.json +14 -14
- package/src/InlineList/InlineListItem/index.tsx +5 -9
- package/src/InlineList/InlineListItem/props.ts +20 -20
- package/src/InlineList/__examples__/InlineList.examples.tsx +7 -4
- package/src/InlineList/index.tsx +1 -3
- package/src/InlineList/props.ts +16 -15
- package/src/List/ListItem/index.tsx +5 -9
- package/src/List/ListItem/props.ts +20 -20
- package/src/List/__examples__/List.examples.tsx +8 -5
- package/src/List/index.tsx +5 -10
- package/src/List/props.ts +20 -20
- package/tsconfig.build.json +18 -2
- package/tsconfig.build.tsbuildinfo +1 -0
- package/types/InlineList/InlineListItem/InlineListItemLocator.d.ts +52 -52
- package/types/InlineList/InlineListItem/index.d.ts +4 -4
- package/types/InlineList/InlineListItem/index.d.ts.map +1 -1
- package/types/InlineList/InlineListItem/props.d.ts +20 -1
- package/types/InlineList/InlineListItem/props.d.ts.map +1 -1
- package/types/InlineList/InlineListLocator.d.ts +182 -182
- package/types/InlineList/__examples__/InlineList.examples.d.ts +3 -8
- package/types/InlineList/__examples__/InlineList.examples.d.ts.map +1 -1
- package/types/InlineList/index.d.ts +1 -2
- package/types/InlineList/index.d.ts.map +1 -1
- package/types/InlineList/props.d.ts +14 -0
- package/types/InlineList/props.d.ts.map +1 -1
- package/types/List/ListItem/index.d.ts +4 -4
- package/types/List/ListItem/index.d.ts.map +1 -1
- package/types/List/ListItem/props.d.ts +20 -1
- package/types/List/ListItem/props.d.ts.map +1 -1
- package/types/List/ListLocator.d.ts +182 -182
- package/types/List/__examples__/List.examples.d.ts +3 -8
- package/types/List/__examples__/List.examples.d.ts.map +1 -1
- package/types/List/index.d.ts +2 -3
- package/types/List/index.d.ts.map +1 -1
- package/types/List/props.d.ts +20 -0
- package/types/List/props.d.ts.map +1 -1
|
@@ -16,25 +16,15 @@ export declare const ListLocator: {
|
|
|
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 ListLocator: {
|
|
|
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 ListLocator: {
|
|
|
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 ListLocator: {
|
|
|
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 ListLocator: {
|
|
|
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 ListLocator: {
|
|
|
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 ListLocator: {
|
|
|
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 ListLocator: {
|
|
|
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>;
|
|
@@ -301,25 +301,15 @@ export declare const ListLocator: {
|
|
|
301
301
|
toString: (maxLength?: number | undefined, options?: {
|
|
302
302
|
highlight: boolean;
|
|
303
303
|
} | undefined) => string;
|
|
304
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
305
|
-
children: (selector: string) => Element[];
|
|
306
|
-
title: () => string | null | undefined;
|
|
307
|
-
id: () => string;
|
|
308
|
-
tagName: () => string;
|
|
309
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
310
|
-
getBoundingClientRect: () => DOMRect;
|
|
311
|
-
matches: (selector: string | undefined) => boolean;
|
|
312
304
|
visible: () => boolean;
|
|
313
|
-
value: () => string | null;
|
|
314
|
-
disabled: () => string | null;
|
|
315
|
-
role: () => string | null;
|
|
316
|
-
label: () => string | null | undefined;
|
|
317
305
|
getId: () => string;
|
|
318
306
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
319
307
|
getOwnerDocument: () => Document;
|
|
320
308
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
321
309
|
getTagName: () => string;
|
|
310
|
+
tagName: () => string;
|
|
322
311
|
typeIn: (text: string) => Promise<void>;
|
|
312
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
323
313
|
getDOMNode: () => Element;
|
|
324
314
|
node: () => Element;
|
|
325
315
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -329,6 +319,7 @@ export declare const ListLocator: {
|
|
|
329
319
|
getTextContent: () => string | null;
|
|
330
320
|
getParentNode: () => ParentNode | null;
|
|
331
321
|
parent: () => ParentNode | null;
|
|
322
|
+
getBoundingClientRect: () => DOMRect;
|
|
332
323
|
rect: () => DOMRect;
|
|
333
324
|
hasClass: (classname: string) => boolean;
|
|
334
325
|
containsFocus: () => boolean;
|
|
@@ -340,17 +331,25 @@ export declare const ListLocator: {
|
|
|
340
331
|
exists: () => boolean;
|
|
341
332
|
text: () => string | null;
|
|
342
333
|
empty: () => boolean;
|
|
334
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
343
335
|
descendants: (selector: string) => Element[];
|
|
344
336
|
ancestors: (selector: string) => ParentNode[];
|
|
345
337
|
attribute: (qualifiedName: string) => string | null;
|
|
346
338
|
style: (property: string) => string;
|
|
347
339
|
classNames: () => string[];
|
|
340
|
+
id: () => string;
|
|
341
|
+
matches: (selector: string | undefined) => boolean;
|
|
348
342
|
checked: () => any;
|
|
349
343
|
selected: () => any;
|
|
344
|
+
disabled: () => string | null;
|
|
350
345
|
readonly: () => any;
|
|
346
|
+
role: () => string | null;
|
|
347
|
+
value: () => string | null;
|
|
348
|
+
label: () => string | null | undefined;
|
|
349
|
+
title: () => string | null | undefined;
|
|
350
|
+
children: (selector: string) => Element[];
|
|
351
351
|
parents: (selector: string) => ParentNode[];
|
|
352
352
|
} & {
|
|
353
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
354
353
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
355
354
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
356
355
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -388,6 +387,7 @@ export declare const ListLocator: {
|
|
|
388
387
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
389
388
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
390
389
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
390
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
391
391
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
392
392
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
393
393
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -440,25 +440,15 @@ export declare const ListLocator: {
|
|
|
440
440
|
toString: (maxLength?: number | undefined, options?: {
|
|
441
441
|
highlight: boolean;
|
|
442
442
|
} | undefined) => string;
|
|
443
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
444
|
-
children: (selector: string) => Element[];
|
|
445
|
-
title: () => string | null | undefined;
|
|
446
|
-
id: () => string;
|
|
447
|
-
tagName: () => string;
|
|
448
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
449
|
-
getBoundingClientRect: () => DOMRect;
|
|
450
|
-
matches: (selector: string | undefined) => boolean;
|
|
451
443
|
visible: () => boolean;
|
|
452
|
-
value: () => string | null;
|
|
453
|
-
disabled: () => string | null;
|
|
454
|
-
role: () => string | null;
|
|
455
|
-
label: () => string | null | undefined;
|
|
456
444
|
getId: () => string;
|
|
457
445
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
458
446
|
getOwnerDocument: () => Document;
|
|
459
447
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
460
448
|
getTagName: () => string;
|
|
449
|
+
tagName: () => string;
|
|
461
450
|
typeIn: (text: string) => Promise<void>;
|
|
451
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
462
452
|
getDOMNode: () => Element;
|
|
463
453
|
node: () => Element;
|
|
464
454
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -468,6 +458,7 @@ export declare const ListLocator: {
|
|
|
468
458
|
getTextContent: () => string | null;
|
|
469
459
|
getParentNode: () => ParentNode | null;
|
|
470
460
|
parent: () => ParentNode | null;
|
|
461
|
+
getBoundingClientRect: () => DOMRect;
|
|
471
462
|
rect: () => DOMRect;
|
|
472
463
|
hasClass: (classname: string) => boolean;
|
|
473
464
|
containsFocus: () => boolean;
|
|
@@ -479,17 +470,25 @@ export declare const ListLocator: {
|
|
|
479
470
|
exists: () => boolean;
|
|
480
471
|
text: () => string | null;
|
|
481
472
|
empty: () => boolean;
|
|
473
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
482
474
|
descendants: (selector: string) => Element[];
|
|
483
475
|
ancestors: (selector: string) => ParentNode[];
|
|
484
476
|
attribute: (qualifiedName: string) => string | null;
|
|
485
477
|
style: (property: string) => string;
|
|
486
478
|
classNames: () => string[];
|
|
479
|
+
id: () => string;
|
|
480
|
+
matches: (selector: string | undefined) => boolean;
|
|
487
481
|
checked: () => any;
|
|
488
482
|
selected: () => any;
|
|
483
|
+
disabled: () => string | null;
|
|
489
484
|
readonly: () => any;
|
|
485
|
+
role: () => string | null;
|
|
486
|
+
value: () => string | null;
|
|
487
|
+
label: () => string | null | undefined;
|
|
488
|
+
title: () => string | null | undefined;
|
|
489
|
+
children: (selector: string) => Element[];
|
|
490
490
|
parents: (selector: string) => ParentNode[];
|
|
491
491
|
} & {
|
|
492
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
493
492
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
494
493
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
495
494
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -527,6 +526,7 @@ export declare const ListLocator: {
|
|
|
527
526
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
528
527
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
529
528
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
529
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
530
530
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
531
531
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
532
532
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -579,25 +579,15 @@ export declare const ListLocator: {
|
|
|
579
579
|
toString: (maxLength?: number | undefined, options?: {
|
|
580
580
|
highlight: boolean;
|
|
581
581
|
} | undefined) => string;
|
|
582
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
583
|
-
children: (selector: string) => Element[];
|
|
584
|
-
title: () => string | null | undefined;
|
|
585
|
-
id: () => string;
|
|
586
|
-
tagName: () => string;
|
|
587
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
588
|
-
getBoundingClientRect: () => DOMRect;
|
|
589
|
-
matches: (selector: string | undefined) => boolean;
|
|
590
582
|
visible: () => boolean;
|
|
591
|
-
value: () => string | null;
|
|
592
|
-
disabled: () => string | null;
|
|
593
|
-
role: () => string | null;
|
|
594
|
-
label: () => string | null | undefined;
|
|
595
583
|
getId: () => string;
|
|
596
584
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
597
585
|
getOwnerDocument: () => Document;
|
|
598
586
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
599
587
|
getTagName: () => string;
|
|
588
|
+
tagName: () => string;
|
|
600
589
|
typeIn: (text: string) => Promise<void>;
|
|
590
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
601
591
|
getDOMNode: () => Element;
|
|
602
592
|
node: () => Element;
|
|
603
593
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -607,6 +597,7 @@ export declare const ListLocator: {
|
|
|
607
597
|
getTextContent: () => string | null;
|
|
608
598
|
getParentNode: () => ParentNode | null;
|
|
609
599
|
parent: () => ParentNode | null;
|
|
600
|
+
getBoundingClientRect: () => DOMRect;
|
|
610
601
|
rect: () => DOMRect;
|
|
611
602
|
hasClass: (classname: string) => boolean;
|
|
612
603
|
containsFocus: () => boolean;
|
|
@@ -618,17 +609,25 @@ export declare const ListLocator: {
|
|
|
618
609
|
exists: () => boolean;
|
|
619
610
|
text: () => string | null;
|
|
620
611
|
empty: () => boolean;
|
|
612
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
621
613
|
descendants: (selector: string) => Element[];
|
|
622
614
|
ancestors: (selector: string) => ParentNode[];
|
|
623
615
|
attribute: (qualifiedName: string) => string | null;
|
|
624
616
|
style: (property: string) => string;
|
|
625
617
|
classNames: () => string[];
|
|
618
|
+
id: () => string;
|
|
619
|
+
matches: (selector: string | undefined) => boolean;
|
|
626
620
|
checked: () => any;
|
|
627
621
|
selected: () => any;
|
|
622
|
+
disabled: () => string | null;
|
|
628
623
|
readonly: () => any;
|
|
624
|
+
role: () => string | null;
|
|
625
|
+
value: () => string | null;
|
|
626
|
+
label: () => string | null | undefined;
|
|
627
|
+
title: () => string | null | undefined;
|
|
628
|
+
children: (selector: string) => Element[];
|
|
629
629
|
parents: (selector: string) => ParentNode[];
|
|
630
630
|
} & {
|
|
631
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
632
631
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
633
632
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
634
633
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -666,6 +665,7 @@ export declare const ListLocator: {
|
|
|
666
665
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
667
666
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
668
667
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
668
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
669
669
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
670
670
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
671
671
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -719,25 +719,15 @@ export declare const ListLocator: {
|
|
|
719
719
|
toString: (maxLength?: number | undefined, options?: {
|
|
720
720
|
highlight: boolean;
|
|
721
721
|
} | undefined) => string;
|
|
722
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
723
|
-
children: (selector: string) => Element[];
|
|
724
|
-
title: () => string | null | undefined;
|
|
725
|
-
id: () => string;
|
|
726
|
-
tagName: () => string;
|
|
727
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
728
|
-
getBoundingClientRect: () => DOMRect;
|
|
729
|
-
matches: (selector: string | undefined) => boolean;
|
|
730
722
|
visible: () => boolean;
|
|
731
|
-
value: () => string | null;
|
|
732
|
-
disabled: () => string | null;
|
|
733
|
-
role: () => string | null;
|
|
734
|
-
label: () => string | null | undefined;
|
|
735
723
|
getId: () => string;
|
|
736
724
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
737
725
|
getOwnerDocument: () => Document;
|
|
738
726
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
739
727
|
getTagName: () => string;
|
|
728
|
+
tagName: () => string;
|
|
740
729
|
typeIn: (text: string) => Promise<void>;
|
|
730
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
741
731
|
getDOMNode: () => Element;
|
|
742
732
|
node: () => Element;
|
|
743
733
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -747,6 +737,7 @@ export declare const ListLocator: {
|
|
|
747
737
|
getTextContent: () => string | null;
|
|
748
738
|
getParentNode: () => ParentNode | null;
|
|
749
739
|
parent: () => ParentNode | null;
|
|
740
|
+
getBoundingClientRect: () => DOMRect;
|
|
750
741
|
rect: () => DOMRect;
|
|
751
742
|
hasClass: (classname: string) => boolean;
|
|
752
743
|
containsFocus: () => boolean;
|
|
@@ -758,17 +749,25 @@ export declare const ListLocator: {
|
|
|
758
749
|
exists: () => boolean;
|
|
759
750
|
text: () => string | null;
|
|
760
751
|
empty: () => boolean;
|
|
752
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
761
753
|
descendants: (selector: string) => Element[];
|
|
762
754
|
ancestors: (selector: string) => ParentNode[];
|
|
763
755
|
attribute: (qualifiedName: string) => string | null;
|
|
764
756
|
style: (property: string) => string;
|
|
765
757
|
classNames: () => string[];
|
|
758
|
+
id: () => string;
|
|
759
|
+
matches: (selector: string | undefined) => boolean;
|
|
766
760
|
checked: () => any;
|
|
767
761
|
selected: () => any;
|
|
762
|
+
disabled: () => string | null;
|
|
768
763
|
readonly: () => any;
|
|
764
|
+
role: () => string | null;
|
|
765
|
+
value: () => string | null;
|
|
766
|
+
label: () => string | null | undefined;
|
|
767
|
+
title: () => string | null | undefined;
|
|
768
|
+
children: (selector: string) => Element[];
|
|
769
769
|
parents: (selector: string) => ParentNode[];
|
|
770
770
|
} & {
|
|
771
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
772
771
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
773
772
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
774
773
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -806,6 +805,7 @@ export declare const ListLocator: {
|
|
|
806
805
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
807
806
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
808
807
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
808
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
809
809
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
810
810
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
811
811
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -858,25 +858,15 @@ export declare const ListLocator: {
|
|
|
858
858
|
toString: (maxLength?: number | undefined, options?: {
|
|
859
859
|
highlight: boolean;
|
|
860
860
|
} | undefined) => string;
|
|
861
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
862
|
-
children: (selector: string) => Element[];
|
|
863
|
-
title: () => string | null | undefined;
|
|
864
|
-
id: () => string;
|
|
865
|
-
tagName: () => string;
|
|
866
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
867
|
-
getBoundingClientRect: () => DOMRect;
|
|
868
|
-
matches: (selector: string | undefined) => boolean;
|
|
869
861
|
visible: () => boolean;
|
|
870
|
-
value: () => string | null;
|
|
871
|
-
disabled: () => string | null;
|
|
872
|
-
role: () => string | null;
|
|
873
|
-
label: () => string | null | undefined;
|
|
874
862
|
getId: () => string;
|
|
875
863
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
876
864
|
getOwnerDocument: () => Document;
|
|
877
865
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
878
866
|
getTagName: () => string;
|
|
867
|
+
tagName: () => string;
|
|
879
868
|
typeIn: (text: string) => Promise<void>;
|
|
869
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
880
870
|
getDOMNode: () => Element;
|
|
881
871
|
node: () => Element;
|
|
882
872
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -886,6 +876,7 @@ export declare const ListLocator: {
|
|
|
886
876
|
getTextContent: () => string | null;
|
|
887
877
|
getParentNode: () => ParentNode | null;
|
|
888
878
|
parent: () => ParentNode | null;
|
|
879
|
+
getBoundingClientRect: () => DOMRect;
|
|
889
880
|
rect: () => DOMRect;
|
|
890
881
|
hasClass: (classname: string) => boolean;
|
|
891
882
|
containsFocus: () => boolean;
|
|
@@ -897,17 +888,25 @@ export declare const ListLocator: {
|
|
|
897
888
|
exists: () => boolean;
|
|
898
889
|
text: () => string | null;
|
|
899
890
|
empty: () => boolean;
|
|
891
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
900
892
|
descendants: (selector: string) => Element[];
|
|
901
893
|
ancestors: (selector: string) => ParentNode[];
|
|
902
894
|
attribute: (qualifiedName: string) => string | null;
|
|
903
895
|
style: (property: string) => string;
|
|
904
896
|
classNames: () => string[];
|
|
897
|
+
id: () => string;
|
|
898
|
+
matches: (selector: string | undefined) => boolean;
|
|
905
899
|
checked: () => any;
|
|
906
900
|
selected: () => any;
|
|
901
|
+
disabled: () => string | null;
|
|
907
902
|
readonly: () => any;
|
|
903
|
+
role: () => string | null;
|
|
904
|
+
value: () => string | null;
|
|
905
|
+
label: () => string | null | undefined;
|
|
906
|
+
title: () => string | null | undefined;
|
|
907
|
+
children: (selector: string) => Element[];
|
|
908
908
|
parents: (selector: string) => ParentNode[];
|
|
909
909
|
} & {
|
|
910
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
911
910
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
912
911
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
913
912
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -945,6 +944,7 @@ export declare const ListLocator: {
|
|
|
945
944
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
946
945
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
947
946
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
947
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
948
948
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
949
949
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
950
950
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -997,25 +997,15 @@ export declare const ListLocator: {
|
|
|
997
997
|
toString: (maxLength?: number | undefined, options?: {
|
|
998
998
|
highlight: boolean;
|
|
999
999
|
} | undefined) => string;
|
|
1000
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1001
|
-
children: (selector: string) => Element[];
|
|
1002
|
-
title: () => string | null | undefined;
|
|
1003
|
-
id: () => string;
|
|
1004
|
-
tagName: () => string;
|
|
1005
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1006
|
-
getBoundingClientRect: () => DOMRect;
|
|
1007
|
-
matches: (selector: string | undefined) => boolean;
|
|
1008
1000
|
visible: () => boolean;
|
|
1009
|
-
value: () => string | null;
|
|
1010
|
-
disabled: () => string | null;
|
|
1011
|
-
role: () => string | null;
|
|
1012
|
-
label: () => string | null | undefined;
|
|
1013
1001
|
getId: () => string;
|
|
1014
1002
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1015
1003
|
getOwnerDocument: () => Document;
|
|
1016
1004
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1017
1005
|
getTagName: () => string;
|
|
1006
|
+
tagName: () => string;
|
|
1018
1007
|
typeIn: (text: string) => Promise<void>;
|
|
1008
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1019
1009
|
getDOMNode: () => Element;
|
|
1020
1010
|
node: () => Element;
|
|
1021
1011
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1025,6 +1015,7 @@ export declare const ListLocator: {
|
|
|
1025
1015
|
getTextContent: () => string | null;
|
|
1026
1016
|
getParentNode: () => ParentNode | null;
|
|
1027
1017
|
parent: () => ParentNode | null;
|
|
1018
|
+
getBoundingClientRect: () => DOMRect;
|
|
1028
1019
|
rect: () => DOMRect;
|
|
1029
1020
|
hasClass: (classname: string) => boolean;
|
|
1030
1021
|
containsFocus: () => boolean;
|
|
@@ -1036,17 +1027,25 @@ export declare const ListLocator: {
|
|
|
1036
1027
|
exists: () => boolean;
|
|
1037
1028
|
text: () => string | null;
|
|
1038
1029
|
empty: () => boolean;
|
|
1030
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1039
1031
|
descendants: (selector: string) => Element[];
|
|
1040
1032
|
ancestors: (selector: string) => ParentNode[];
|
|
1041
1033
|
attribute: (qualifiedName: string) => string | null;
|
|
1042
1034
|
style: (property: string) => string;
|
|
1043
1035
|
classNames: () => string[];
|
|
1036
|
+
id: () => string;
|
|
1037
|
+
matches: (selector: string | undefined) => boolean;
|
|
1044
1038
|
checked: () => any;
|
|
1045
1039
|
selected: () => any;
|
|
1040
|
+
disabled: () => string | null;
|
|
1046
1041
|
readonly: () => any;
|
|
1042
|
+
role: () => string | null;
|
|
1043
|
+
value: () => string | null;
|
|
1044
|
+
label: () => string | null | undefined;
|
|
1045
|
+
title: () => string | null | undefined;
|
|
1046
|
+
children: (selector: string) => Element[];
|
|
1047
1047
|
parents: (selector: string) => ParentNode[];
|
|
1048
1048
|
} & {
|
|
1049
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1050
1049
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1051
1050
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1052
1051
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1084,6 +1083,7 @@ export declare const ListLocator: {
|
|
|
1084
1083
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1085
1084
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1086
1085
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1086
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1087
1087
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1088
1088
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1089
1089
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1137,25 +1137,15 @@ export declare const ListLocator: {
|
|
|
1137
1137
|
toString: (maxLength?: number | undefined, options?: {
|
|
1138
1138
|
highlight: boolean;
|
|
1139
1139
|
} | undefined) => string;
|
|
1140
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1141
|
-
children: (selector: string) => Element[];
|
|
1142
|
-
title: () => string | null | undefined;
|
|
1143
|
-
id: () => string;
|
|
1144
|
-
tagName: () => string;
|
|
1145
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1146
|
-
getBoundingClientRect: () => DOMRect;
|
|
1147
|
-
matches: (selector: string | undefined) => boolean;
|
|
1148
1140
|
visible: () => boolean;
|
|
1149
|
-
value: () => string | null;
|
|
1150
|
-
disabled: () => string | null;
|
|
1151
|
-
role: () => string | null;
|
|
1152
|
-
label: () => string | null | undefined;
|
|
1153
1141
|
getId: () => string;
|
|
1154
1142
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1155
1143
|
getOwnerDocument: () => Document;
|
|
1156
1144
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1157
1145
|
getTagName: () => string;
|
|
1146
|
+
tagName: () => string;
|
|
1158
1147
|
typeIn: (text: string) => Promise<void>;
|
|
1148
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1159
1149
|
getDOMNode: () => Element;
|
|
1160
1150
|
node: () => Element;
|
|
1161
1151
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1165,6 +1155,7 @@ export declare const ListLocator: {
|
|
|
1165
1155
|
getTextContent: () => string | null;
|
|
1166
1156
|
getParentNode: () => ParentNode | null;
|
|
1167
1157
|
parent: () => ParentNode | null;
|
|
1158
|
+
getBoundingClientRect: () => DOMRect;
|
|
1168
1159
|
rect: () => DOMRect;
|
|
1169
1160
|
hasClass: (classname: string) => boolean;
|
|
1170
1161
|
containsFocus: () => boolean;
|
|
@@ -1176,17 +1167,25 @@ export declare const ListLocator: {
|
|
|
1176
1167
|
exists: () => boolean;
|
|
1177
1168
|
text: () => string | null;
|
|
1178
1169
|
empty: () => boolean;
|
|
1170
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1179
1171
|
descendants: (selector: string) => Element[];
|
|
1180
1172
|
ancestors: (selector: string) => ParentNode[];
|
|
1181
1173
|
attribute: (qualifiedName: string) => string | null;
|
|
1182
1174
|
style: (property: string) => string;
|
|
1183
1175
|
classNames: () => string[];
|
|
1176
|
+
id: () => string;
|
|
1177
|
+
matches: (selector: string | undefined) => boolean;
|
|
1184
1178
|
checked: () => any;
|
|
1185
1179
|
selected: () => any;
|
|
1180
|
+
disabled: () => string | null;
|
|
1186
1181
|
readonly: () => any;
|
|
1182
|
+
role: () => string | null;
|
|
1183
|
+
value: () => string | null;
|
|
1184
|
+
label: () => string | null | undefined;
|
|
1185
|
+
title: () => string | null | undefined;
|
|
1186
|
+
children: (selector: string) => Element[];
|
|
1187
1187
|
parents: (selector: string) => ParentNode[];
|
|
1188
1188
|
} & {
|
|
1189
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1190
1189
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1191
1190
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1192
1191
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1224,6 +1223,7 @@ export declare const ListLocator: {
|
|
|
1224
1223
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1225
1224
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1226
1225
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1226
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1227
1227
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1228
1228
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1229
1229
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1276,25 +1276,15 @@ export declare const ListLocator: {
|
|
|
1276
1276
|
toString: (maxLength?: number | undefined, options?: {
|
|
1277
1277
|
highlight: boolean;
|
|
1278
1278
|
} | undefined) => string;
|
|
1279
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1280
|
-
children: (selector: string) => Element[];
|
|
1281
|
-
title: () => string | null | undefined;
|
|
1282
|
-
id: () => string;
|
|
1283
|
-
tagName: () => string;
|
|
1284
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1285
|
-
getBoundingClientRect: () => DOMRect;
|
|
1286
|
-
matches: (selector: string | undefined) => boolean;
|
|
1287
1279
|
visible: () => boolean;
|
|
1288
|
-
value: () => string | null;
|
|
1289
|
-
disabled: () => string | null;
|
|
1290
|
-
role: () => string | null;
|
|
1291
|
-
label: () => string | null | undefined;
|
|
1292
1280
|
getId: () => string;
|
|
1293
1281
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1294
1282
|
getOwnerDocument: () => Document;
|
|
1295
1283
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1296
1284
|
getTagName: () => string;
|
|
1285
|
+
tagName: () => string;
|
|
1297
1286
|
typeIn: (text: string) => Promise<void>;
|
|
1287
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1298
1288
|
getDOMNode: () => Element;
|
|
1299
1289
|
node: () => Element;
|
|
1300
1290
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1304,6 +1294,7 @@ export declare const ListLocator: {
|
|
|
1304
1294
|
getTextContent: () => string | null;
|
|
1305
1295
|
getParentNode: () => ParentNode | null;
|
|
1306
1296
|
parent: () => ParentNode | null;
|
|
1297
|
+
getBoundingClientRect: () => DOMRect;
|
|
1307
1298
|
rect: () => DOMRect;
|
|
1308
1299
|
hasClass: (classname: string) => boolean;
|
|
1309
1300
|
containsFocus: () => boolean;
|
|
@@ -1315,17 +1306,25 @@ export declare const ListLocator: {
|
|
|
1315
1306
|
exists: () => boolean;
|
|
1316
1307
|
text: () => string | null;
|
|
1317
1308
|
empty: () => boolean;
|
|
1309
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1318
1310
|
descendants: (selector: string) => Element[];
|
|
1319
1311
|
ancestors: (selector: string) => ParentNode[];
|
|
1320
1312
|
attribute: (qualifiedName: string) => string | null;
|
|
1321
1313
|
style: (property: string) => string;
|
|
1322
1314
|
classNames: () => string[];
|
|
1315
|
+
id: () => string;
|
|
1316
|
+
matches: (selector: string | undefined) => boolean;
|
|
1323
1317
|
checked: () => any;
|
|
1324
1318
|
selected: () => any;
|
|
1319
|
+
disabled: () => string | null;
|
|
1325
1320
|
readonly: () => any;
|
|
1321
|
+
role: () => string | null;
|
|
1322
|
+
value: () => string | null;
|
|
1323
|
+
label: () => string | null | undefined;
|
|
1324
|
+
title: () => string | null | undefined;
|
|
1325
|
+
children: (selector: string) => Element[];
|
|
1326
1326
|
parents: (selector: string) => ParentNode[];
|
|
1327
1327
|
} & {
|
|
1328
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1329
1328
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1330
1329
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1331
1330
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1363,6 +1362,7 @@ export declare const ListLocator: {
|
|
|
1363
1362
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1364
1363
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1365
1364
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1365
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1366
1366
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1367
1367
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1368
1368
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1415,25 +1415,15 @@ export declare const ListLocator: {
|
|
|
1415
1415
|
toString: (maxLength?: number | undefined, options?: {
|
|
1416
1416
|
highlight: boolean;
|
|
1417
1417
|
} | undefined) => string;
|
|
1418
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1419
|
-
children: (selector: string) => Element[];
|
|
1420
|
-
title: () => string | null | undefined;
|
|
1421
|
-
id: () => string;
|
|
1422
|
-
tagName: () => string;
|
|
1423
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1424
|
-
getBoundingClientRect: () => DOMRect;
|
|
1425
|
-
matches: (selector: string | undefined) => boolean;
|
|
1426
1418
|
visible: () => boolean;
|
|
1427
|
-
value: () => string | null;
|
|
1428
|
-
disabled: () => string | null;
|
|
1429
|
-
role: () => string | null;
|
|
1430
|
-
label: () => string | null | undefined;
|
|
1431
1419
|
getId: () => string;
|
|
1432
1420
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1433
1421
|
getOwnerDocument: () => Document;
|
|
1434
1422
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1435
1423
|
getTagName: () => string;
|
|
1424
|
+
tagName: () => string;
|
|
1436
1425
|
typeIn: (text: string) => Promise<void>;
|
|
1426
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1437
1427
|
getDOMNode: () => Element;
|
|
1438
1428
|
node: () => Element;
|
|
1439
1429
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1443,6 +1433,7 @@ export declare const ListLocator: {
|
|
|
1443
1433
|
getTextContent: () => string | null;
|
|
1444
1434
|
getParentNode: () => ParentNode | null;
|
|
1445
1435
|
parent: () => ParentNode | null;
|
|
1436
|
+
getBoundingClientRect: () => DOMRect;
|
|
1446
1437
|
rect: () => DOMRect;
|
|
1447
1438
|
hasClass: (classname: string) => boolean;
|
|
1448
1439
|
containsFocus: () => boolean;
|
|
@@ -1454,17 +1445,25 @@ export declare const ListLocator: {
|
|
|
1454
1445
|
exists: () => boolean;
|
|
1455
1446
|
text: () => string | null;
|
|
1456
1447
|
empty: () => boolean;
|
|
1448
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1457
1449
|
descendants: (selector: string) => Element[];
|
|
1458
1450
|
ancestors: (selector: string) => ParentNode[];
|
|
1459
1451
|
attribute: (qualifiedName: string) => string | null;
|
|
1460
1452
|
style: (property: string) => string;
|
|
1461
1453
|
classNames: () => string[];
|
|
1454
|
+
id: () => string;
|
|
1455
|
+
matches: (selector: string | undefined) => boolean;
|
|
1462
1456
|
checked: () => any;
|
|
1463
1457
|
selected: () => any;
|
|
1458
|
+
disabled: () => string | null;
|
|
1464
1459
|
readonly: () => any;
|
|
1460
|
+
role: () => string | null;
|
|
1461
|
+
value: () => string | null;
|
|
1462
|
+
label: () => string | null | undefined;
|
|
1463
|
+
title: () => string | null | undefined;
|
|
1464
|
+
children: (selector: string) => Element[];
|
|
1465
1465
|
parents: (selector: string) => ParentNode[];
|
|
1466
1466
|
} & {
|
|
1467
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1468
1467
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1469
1468
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1470
1469
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1502,6 +1501,7 @@ export declare const ListLocator: {
|
|
|
1502
1501
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1503
1502
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1504
1503
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1504
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1505
1505
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1506
1506
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1507
1507
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1555,25 +1555,15 @@ export declare const ListLocator: {
|
|
|
1555
1555
|
toString: (maxLength?: number | undefined, options?: {
|
|
1556
1556
|
highlight: boolean;
|
|
1557
1557
|
} | undefined) => string;
|
|
1558
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1559
|
-
children: (selector: string) => Element[];
|
|
1560
|
-
title: () => string | null | undefined;
|
|
1561
|
-
id: () => string;
|
|
1562
|
-
tagName: () => string;
|
|
1563
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1564
|
-
getBoundingClientRect: () => DOMRect;
|
|
1565
|
-
matches: (selector: string | undefined) => boolean;
|
|
1566
1558
|
visible: () => boolean;
|
|
1567
|
-
value: () => string | null;
|
|
1568
|
-
disabled: () => string | null;
|
|
1569
|
-
role: () => string | null;
|
|
1570
|
-
label: () => string | null | undefined;
|
|
1571
1559
|
getId: () => string;
|
|
1572
1560
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1573
1561
|
getOwnerDocument: () => Document;
|
|
1574
1562
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1575
1563
|
getTagName: () => string;
|
|
1564
|
+
tagName: () => string;
|
|
1576
1565
|
typeIn: (text: string) => Promise<void>;
|
|
1566
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1577
1567
|
getDOMNode: () => Element;
|
|
1578
1568
|
node: () => Element;
|
|
1579
1569
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1583,6 +1573,7 @@ export declare const ListLocator: {
|
|
|
1583
1573
|
getTextContent: () => string | null;
|
|
1584
1574
|
getParentNode: () => ParentNode | null;
|
|
1585
1575
|
parent: () => ParentNode | null;
|
|
1576
|
+
getBoundingClientRect: () => DOMRect;
|
|
1586
1577
|
rect: () => DOMRect;
|
|
1587
1578
|
hasClass: (classname: string) => boolean;
|
|
1588
1579
|
containsFocus: () => boolean;
|
|
@@ -1594,17 +1585,25 @@ export declare const ListLocator: {
|
|
|
1594
1585
|
exists: () => boolean;
|
|
1595
1586
|
text: () => string | null;
|
|
1596
1587
|
empty: () => boolean;
|
|
1588
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1597
1589
|
descendants: (selector: string) => Element[];
|
|
1598
1590
|
ancestors: (selector: string) => ParentNode[];
|
|
1599
1591
|
attribute: (qualifiedName: string) => string | null;
|
|
1600
1592
|
style: (property: string) => string;
|
|
1601
1593
|
classNames: () => string[];
|
|
1594
|
+
id: () => string;
|
|
1595
|
+
matches: (selector: string | undefined) => boolean;
|
|
1602
1596
|
checked: () => any;
|
|
1603
1597
|
selected: () => any;
|
|
1598
|
+
disabled: () => string | null;
|
|
1604
1599
|
readonly: () => any;
|
|
1600
|
+
role: () => string | null;
|
|
1601
|
+
value: () => string | null;
|
|
1602
|
+
label: () => string | null | undefined;
|
|
1603
|
+
title: () => string | null | undefined;
|
|
1604
|
+
children: (selector: string) => Element[];
|
|
1605
1605
|
parents: (selector: string) => ParentNode[];
|
|
1606
1606
|
} & {
|
|
1607
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1608
1607
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1609
1608
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1610
1609
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1642,6 +1641,7 @@ export declare const ListLocator: {
|
|
|
1642
1641
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1643
1642
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1644
1643
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1644
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1645
1645
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1646
1646
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1647
1647
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1694,25 +1694,15 @@ export declare const ListLocator: {
|
|
|
1694
1694
|
toString: (maxLength?: number | undefined, options?: {
|
|
1695
1695
|
highlight: boolean;
|
|
1696
1696
|
} | undefined) => string;
|
|
1697
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1698
|
-
children: (selector: string) => Element[];
|
|
1699
|
-
title: () => string | null | undefined;
|
|
1700
|
-
id: () => string;
|
|
1701
|
-
tagName: () => string;
|
|
1702
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1703
|
-
getBoundingClientRect: () => DOMRect;
|
|
1704
|
-
matches: (selector: string | undefined) => boolean;
|
|
1705
1697
|
visible: () => boolean;
|
|
1706
|
-
value: () => string | null;
|
|
1707
|
-
disabled: () => string | null;
|
|
1708
|
-
role: () => string | null;
|
|
1709
|
-
label: () => string | null | undefined;
|
|
1710
1698
|
getId: () => string;
|
|
1711
1699
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1712
1700
|
getOwnerDocument: () => Document;
|
|
1713
1701
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1714
1702
|
getTagName: () => string;
|
|
1703
|
+
tagName: () => string;
|
|
1715
1704
|
typeIn: (text: string) => Promise<void>;
|
|
1705
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1716
1706
|
getDOMNode: () => Element;
|
|
1717
1707
|
node: () => Element;
|
|
1718
1708
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1722,6 +1712,7 @@ export declare const ListLocator: {
|
|
|
1722
1712
|
getTextContent: () => string | null;
|
|
1723
1713
|
getParentNode: () => ParentNode | null;
|
|
1724
1714
|
parent: () => ParentNode | null;
|
|
1715
|
+
getBoundingClientRect: () => DOMRect;
|
|
1725
1716
|
rect: () => DOMRect;
|
|
1726
1717
|
hasClass: (classname: string) => boolean;
|
|
1727
1718
|
containsFocus: () => boolean;
|
|
@@ -1733,17 +1724,25 @@ export declare const ListLocator: {
|
|
|
1733
1724
|
exists: () => boolean;
|
|
1734
1725
|
text: () => string | null;
|
|
1735
1726
|
empty: () => boolean;
|
|
1727
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1736
1728
|
descendants: (selector: string) => Element[];
|
|
1737
1729
|
ancestors: (selector: string) => ParentNode[];
|
|
1738
1730
|
attribute: (qualifiedName: string) => string | null;
|
|
1739
1731
|
style: (property: string) => string;
|
|
1740
1732
|
classNames: () => string[];
|
|
1733
|
+
id: () => string;
|
|
1734
|
+
matches: (selector: string | undefined) => boolean;
|
|
1741
1735
|
checked: () => any;
|
|
1742
1736
|
selected: () => any;
|
|
1737
|
+
disabled: () => string | null;
|
|
1743
1738
|
readonly: () => any;
|
|
1739
|
+
role: () => string | null;
|
|
1740
|
+
value: () => string | null;
|
|
1741
|
+
label: () => string | null | undefined;
|
|
1742
|
+
title: () => string | null | undefined;
|
|
1743
|
+
children: (selector: string) => Element[];
|
|
1744
1744
|
parents: (selector: string) => ParentNode[];
|
|
1745
1745
|
} & {
|
|
1746
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1747
1746
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1748
1747
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1749
1748
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1781,6 +1780,7 @@ export declare const ListLocator: {
|
|
|
1781
1780
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1782
1781
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1783
1782
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1783
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1784
1784
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1785
1785
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1786
1786
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1833,25 +1833,15 @@ export declare const ListLocator: {
|
|
|
1833
1833
|
toString: (maxLength?: number | undefined, options?: {
|
|
1834
1834
|
highlight: boolean;
|
|
1835
1835
|
} | undefined) => string;
|
|
1836
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1837
|
-
children: (selector: string) => Element[];
|
|
1838
|
-
title: () => string | null | undefined;
|
|
1839
|
-
id: () => string;
|
|
1840
|
-
tagName: () => string;
|
|
1841
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1842
|
-
getBoundingClientRect: () => DOMRect;
|
|
1843
|
-
matches: (selector: string | undefined) => boolean;
|
|
1844
1836
|
visible: () => boolean;
|
|
1845
|
-
value: () => string | null;
|
|
1846
|
-
disabled: () => string | null;
|
|
1847
|
-
role: () => string | null;
|
|
1848
|
-
label: () => string | null | undefined;
|
|
1849
1837
|
getId: () => string;
|
|
1850
1838
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1851
1839
|
getOwnerDocument: () => Document;
|
|
1852
1840
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1853
1841
|
getTagName: () => string;
|
|
1842
|
+
tagName: () => string;
|
|
1854
1843
|
typeIn: (text: string) => Promise<void>;
|
|
1844
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1855
1845
|
getDOMNode: () => Element;
|
|
1856
1846
|
node: () => Element;
|
|
1857
1847
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1861,6 +1851,7 @@ export declare const ListLocator: {
|
|
|
1861
1851
|
getTextContent: () => string | null;
|
|
1862
1852
|
getParentNode: () => ParentNode | null;
|
|
1863
1853
|
parent: () => ParentNode | null;
|
|
1854
|
+
getBoundingClientRect: () => DOMRect;
|
|
1864
1855
|
rect: () => DOMRect;
|
|
1865
1856
|
hasClass: (classname: string) => boolean;
|
|
1866
1857
|
containsFocus: () => boolean;
|
|
@@ -1872,17 +1863,25 @@ export declare const ListLocator: {
|
|
|
1872
1863
|
exists: () => boolean;
|
|
1873
1864
|
text: () => string | null;
|
|
1874
1865
|
empty: () => boolean;
|
|
1866
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1875
1867
|
descendants: (selector: string) => Element[];
|
|
1876
1868
|
ancestors: (selector: string) => ParentNode[];
|
|
1877
1869
|
attribute: (qualifiedName: string) => string | null;
|
|
1878
1870
|
style: (property: string) => string;
|
|
1879
1871
|
classNames: () => string[];
|
|
1872
|
+
id: () => string;
|
|
1873
|
+
matches: (selector: string | undefined) => boolean;
|
|
1880
1874
|
checked: () => any;
|
|
1881
1875
|
selected: () => any;
|
|
1876
|
+
disabled: () => string | null;
|
|
1882
1877
|
readonly: () => any;
|
|
1878
|
+
role: () => string | null;
|
|
1879
|
+
value: () => string | null;
|
|
1880
|
+
label: () => string | null | undefined;
|
|
1881
|
+
title: () => string | null | undefined;
|
|
1882
|
+
children: (selector: string) => Element[];
|
|
1883
1883
|
parents: (selector: string) => ParentNode[];
|
|
1884
1884
|
} & {
|
|
1885
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1886
1885
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1887
1886
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1888
1887
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1920,6 +1919,7 @@ export declare const ListLocator: {
|
|
|
1920
1919
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1921
1920
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1922
1921
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1922
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1923
1923
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1924
1924
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1925
1925
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|