@instructure/ui-list 8.13.1-snapshot.9 → 8.14.1-snapshot.6
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 InlineListLocator: {
|
|
|
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 InlineListLocator: {
|
|
|
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 InlineListLocator: {
|
|
|
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 InlineListLocator: {
|
|
|
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>;
|
|
@@ -157,25 +157,15 @@ export declare const InlineListLocator: {
|
|
|
157
157
|
toString: (maxLength?: number | undefined, options?: {
|
|
158
158
|
highlight: boolean;
|
|
159
159
|
} | undefined) => string;
|
|
160
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
161
|
-
children: (selector: string) => Element[];
|
|
162
|
-
title: () => string | null | undefined;
|
|
163
|
-
id: () => string;
|
|
164
|
-
tagName: () => string;
|
|
165
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
166
|
-
getBoundingClientRect: () => DOMRect;
|
|
167
|
-
matches: (selector: string | undefined) => boolean;
|
|
168
160
|
visible: () => boolean;
|
|
169
|
-
value: () => string | null;
|
|
170
|
-
disabled: () => string | null;
|
|
171
|
-
role: () => string | null;
|
|
172
|
-
label: () => string | null | undefined;
|
|
173
161
|
getId: () => string;
|
|
174
162
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
175
163
|
getOwnerDocument: () => Document;
|
|
176
164
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
177
165
|
getTagName: () => string;
|
|
166
|
+
tagName: () => string;
|
|
178
167
|
typeIn: (text: string) => Promise<void>;
|
|
168
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
179
169
|
getDOMNode: () => Element;
|
|
180
170
|
node: () => Element;
|
|
181
171
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -185,6 +175,7 @@ export declare const InlineListLocator: {
|
|
|
185
175
|
getTextContent: () => string | null;
|
|
186
176
|
getParentNode: () => ParentNode | null;
|
|
187
177
|
parent: () => ParentNode | null;
|
|
178
|
+
getBoundingClientRect: () => DOMRect;
|
|
188
179
|
rect: () => DOMRect;
|
|
189
180
|
hasClass: (classname: string) => boolean;
|
|
190
181
|
containsFocus: () => boolean;
|
|
@@ -196,17 +187,25 @@ export declare const InlineListLocator: {
|
|
|
196
187
|
exists: () => boolean;
|
|
197
188
|
text: () => string | null;
|
|
198
189
|
empty: () => boolean;
|
|
190
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
199
191
|
descendants: (selector: string) => Element[];
|
|
200
192
|
ancestors: (selector: string) => ParentNode[];
|
|
201
193
|
attribute: (qualifiedName: string) => string | null;
|
|
202
194
|
style: (property: string) => string;
|
|
203
195
|
classNames: () => string[];
|
|
196
|
+
id: () => string;
|
|
197
|
+
matches: (selector: string | undefined) => boolean;
|
|
204
198
|
checked: () => any;
|
|
205
199
|
selected: () => any;
|
|
200
|
+
disabled: () => string | null;
|
|
206
201
|
readonly: () => any;
|
|
202
|
+
role: () => string | null;
|
|
203
|
+
value: () => string | null;
|
|
204
|
+
label: () => string | null | undefined;
|
|
205
|
+
title: () => string | null | undefined;
|
|
206
|
+
children: (selector: string) => Element[];
|
|
207
207
|
parents: (selector: string) => ParentNode[];
|
|
208
208
|
} & {
|
|
209
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
210
209
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
211
210
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
212
211
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -244,6 +243,7 @@ export declare const InlineListLocator: {
|
|
|
244
243
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
245
244
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
246
245
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
246
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
247
247
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
248
248
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
249
249
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -305,25 +305,15 @@ export declare const InlineListLocator: {
|
|
|
305
305
|
toString: (maxLength?: number | undefined, options?: {
|
|
306
306
|
highlight: boolean;
|
|
307
307
|
} | undefined) => string;
|
|
308
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
309
|
-
children: (selector: string) => Element[];
|
|
310
|
-
title: () => string | null | undefined;
|
|
311
|
-
id: () => string;
|
|
312
|
-
tagName: () => string;
|
|
313
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
314
|
-
getBoundingClientRect: () => DOMRect;
|
|
315
|
-
matches: (selector: string | undefined) => boolean;
|
|
316
308
|
visible: () => boolean;
|
|
317
|
-
value: () => string | null;
|
|
318
|
-
disabled: () => string | null;
|
|
319
|
-
role: () => string | null;
|
|
320
|
-
label: () => string | null | undefined;
|
|
321
309
|
getId: () => string;
|
|
322
310
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
323
311
|
getOwnerDocument: () => Document;
|
|
324
312
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
325
313
|
getTagName: () => string;
|
|
314
|
+
tagName: () => string;
|
|
326
315
|
typeIn: (text: string) => Promise<void>;
|
|
316
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
327
317
|
getDOMNode: () => Element;
|
|
328
318
|
node: () => Element;
|
|
329
319
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -333,6 +323,7 @@ export declare const InlineListLocator: {
|
|
|
333
323
|
getTextContent: () => string | null;
|
|
334
324
|
getParentNode: () => ParentNode | null;
|
|
335
325
|
parent: () => ParentNode | null;
|
|
326
|
+
getBoundingClientRect: () => DOMRect;
|
|
336
327
|
rect: () => DOMRect;
|
|
337
328
|
hasClass: (classname: string) => boolean;
|
|
338
329
|
containsFocus: () => boolean;
|
|
@@ -344,17 +335,25 @@ export declare const InlineListLocator: {
|
|
|
344
335
|
exists: () => boolean;
|
|
345
336
|
text: () => string | null;
|
|
346
337
|
empty: () => boolean;
|
|
338
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
347
339
|
descendants: (selector: string) => Element[];
|
|
348
340
|
ancestors: (selector: string) => ParentNode[];
|
|
349
341
|
attribute: (qualifiedName: string) => string | null;
|
|
350
342
|
style: (property: string) => string;
|
|
351
343
|
classNames: () => string[];
|
|
344
|
+
id: () => string;
|
|
345
|
+
matches: (selector: string | undefined) => boolean;
|
|
352
346
|
checked: () => any;
|
|
353
347
|
selected: () => any;
|
|
348
|
+
disabled: () => string | null;
|
|
354
349
|
readonly: () => any;
|
|
350
|
+
role: () => string | null;
|
|
351
|
+
value: () => string | null;
|
|
352
|
+
label: () => string | null | undefined;
|
|
353
|
+
title: () => string | null | undefined;
|
|
354
|
+
children: (selector: string) => Element[];
|
|
355
355
|
parents: (selector: string) => ParentNode[];
|
|
356
356
|
} & {
|
|
357
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
358
357
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
359
358
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
360
359
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -392,6 +391,7 @@ export declare const InlineListLocator: {
|
|
|
392
391
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
393
392
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
394
393
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
394
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
395
395
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
396
396
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
397
397
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -444,25 +444,15 @@ export declare const InlineListLocator: {
|
|
|
444
444
|
toString: (maxLength?: number | undefined, options?: {
|
|
445
445
|
highlight: boolean;
|
|
446
446
|
} | undefined) => string;
|
|
447
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
448
|
-
children: (selector: string) => Element[];
|
|
449
|
-
title: () => string | null | undefined;
|
|
450
|
-
id: () => string;
|
|
451
|
-
tagName: () => string;
|
|
452
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
453
|
-
getBoundingClientRect: () => DOMRect;
|
|
454
|
-
matches: (selector: string | undefined) => boolean;
|
|
455
447
|
visible: () => boolean;
|
|
456
|
-
value: () => string | null;
|
|
457
|
-
disabled: () => string | null;
|
|
458
|
-
role: () => string | null;
|
|
459
|
-
label: () => string | null | undefined;
|
|
460
448
|
getId: () => string;
|
|
461
449
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
462
450
|
getOwnerDocument: () => Document;
|
|
463
451
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
464
452
|
getTagName: () => string;
|
|
453
|
+
tagName: () => string;
|
|
465
454
|
typeIn: (text: string) => Promise<void>;
|
|
455
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
466
456
|
getDOMNode: () => Element;
|
|
467
457
|
node: () => Element;
|
|
468
458
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -472,6 +462,7 @@ export declare const InlineListLocator: {
|
|
|
472
462
|
getTextContent: () => string | null;
|
|
473
463
|
getParentNode: () => ParentNode | null;
|
|
474
464
|
parent: () => ParentNode | null;
|
|
465
|
+
getBoundingClientRect: () => DOMRect;
|
|
475
466
|
rect: () => DOMRect;
|
|
476
467
|
hasClass: (classname: string) => boolean;
|
|
477
468
|
containsFocus: () => boolean;
|
|
@@ -483,17 +474,25 @@ export declare const InlineListLocator: {
|
|
|
483
474
|
exists: () => boolean;
|
|
484
475
|
text: () => string | null;
|
|
485
476
|
empty: () => boolean;
|
|
477
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
486
478
|
descendants: (selector: string) => Element[];
|
|
487
479
|
ancestors: (selector: string) => ParentNode[];
|
|
488
480
|
attribute: (qualifiedName: string) => string | null;
|
|
489
481
|
style: (property: string) => string;
|
|
490
482
|
classNames: () => string[];
|
|
483
|
+
id: () => string;
|
|
484
|
+
matches: (selector: string | undefined) => boolean;
|
|
491
485
|
checked: () => any;
|
|
492
486
|
selected: () => any;
|
|
487
|
+
disabled: () => string | null;
|
|
493
488
|
readonly: () => any;
|
|
489
|
+
role: () => string | null;
|
|
490
|
+
value: () => string | null;
|
|
491
|
+
label: () => string | null | undefined;
|
|
492
|
+
title: () => string | null | undefined;
|
|
493
|
+
children: (selector: string) => Element[];
|
|
494
494
|
parents: (selector: string) => ParentNode[];
|
|
495
495
|
} & {
|
|
496
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
497
496
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
498
497
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
499
498
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -531,6 +530,7 @@ export declare const InlineListLocator: {
|
|
|
531
530
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
532
531
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
533
532
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
533
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
534
534
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
535
535
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
536
536
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -585,25 +585,15 @@ export declare const InlineListLocator: {
|
|
|
585
585
|
toString: (maxLength?: number | undefined, options?: {
|
|
586
586
|
highlight: boolean;
|
|
587
587
|
} | undefined) => string;
|
|
588
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
589
|
-
children: (selector: string) => Element[];
|
|
590
|
-
title: () => string | null | undefined;
|
|
591
|
-
id: () => string;
|
|
592
|
-
tagName: () => string;
|
|
593
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
594
|
-
getBoundingClientRect: () => DOMRect;
|
|
595
|
-
matches: (selector: string | undefined) => boolean;
|
|
596
588
|
visible: () => boolean;
|
|
597
|
-
value: () => string | null;
|
|
598
|
-
disabled: () => string | null;
|
|
599
|
-
role: () => string | null;
|
|
600
|
-
label: () => string | null | undefined;
|
|
601
589
|
getId: () => string;
|
|
602
590
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
603
591
|
getOwnerDocument: () => Document;
|
|
604
592
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
605
593
|
getTagName: () => string;
|
|
594
|
+
tagName: () => string;
|
|
606
595
|
typeIn: (text: string) => Promise<void>;
|
|
596
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
607
597
|
getDOMNode: () => Element;
|
|
608
598
|
node: () => Element;
|
|
609
599
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -613,6 +603,7 @@ export declare const InlineListLocator: {
|
|
|
613
603
|
getTextContent: () => string | null;
|
|
614
604
|
getParentNode: () => ParentNode | null;
|
|
615
605
|
parent: () => ParentNode | null;
|
|
606
|
+
getBoundingClientRect: () => DOMRect;
|
|
616
607
|
rect: () => DOMRect;
|
|
617
608
|
hasClass: (classname: string) => boolean;
|
|
618
609
|
containsFocus: () => boolean;
|
|
@@ -624,17 +615,25 @@ export declare const InlineListLocator: {
|
|
|
624
615
|
exists: () => boolean;
|
|
625
616
|
text: () => string | null;
|
|
626
617
|
empty: () => boolean;
|
|
618
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
627
619
|
descendants: (selector: string) => Element[];
|
|
628
620
|
ancestors: (selector: string) => ParentNode[];
|
|
629
621
|
attribute: (qualifiedName: string) => string | null;
|
|
630
622
|
style: (property: string) => string;
|
|
631
623
|
classNames: () => string[];
|
|
624
|
+
id: () => string;
|
|
625
|
+
matches: (selector: string | undefined) => boolean;
|
|
632
626
|
checked: () => any;
|
|
633
627
|
selected: () => any;
|
|
628
|
+
disabled: () => string | null;
|
|
634
629
|
readonly: () => any;
|
|
630
|
+
role: () => string | null;
|
|
631
|
+
value: () => string | null;
|
|
632
|
+
label: () => string | null | undefined;
|
|
633
|
+
title: () => string | null | undefined;
|
|
634
|
+
children: (selector: string) => Element[];
|
|
635
635
|
parents: (selector: string) => ParentNode[];
|
|
636
636
|
} & {
|
|
637
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
638
637
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
639
638
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
640
639
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -672,6 +671,7 @@ export declare const InlineListLocator: {
|
|
|
672
671
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
673
672
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
674
673
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
674
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
675
675
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
676
676
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
677
677
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -727,25 +727,15 @@ export declare const InlineListLocator: {
|
|
|
727
727
|
toString: (maxLength?: number | undefined, options?: {
|
|
728
728
|
highlight: boolean;
|
|
729
729
|
} | undefined) => string;
|
|
730
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
731
|
-
children: (selector: string) => Element[];
|
|
732
|
-
title: () => string | null | undefined;
|
|
733
|
-
id: () => string;
|
|
734
|
-
tagName: () => string;
|
|
735
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
736
|
-
getBoundingClientRect: () => DOMRect;
|
|
737
|
-
matches: (selector: string | undefined) => boolean;
|
|
738
730
|
visible: () => boolean;
|
|
739
|
-
value: () => string | null;
|
|
740
|
-
disabled: () => string | null;
|
|
741
|
-
role: () => string | null;
|
|
742
|
-
label: () => string | null | undefined;
|
|
743
731
|
getId: () => string;
|
|
744
732
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
745
733
|
getOwnerDocument: () => Document;
|
|
746
734
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
747
735
|
getTagName: () => string;
|
|
736
|
+
tagName: () => string;
|
|
748
737
|
typeIn: (text: string) => Promise<void>;
|
|
738
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
749
739
|
getDOMNode: () => Element;
|
|
750
740
|
node: () => Element;
|
|
751
741
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -755,6 +745,7 @@ export declare const InlineListLocator: {
|
|
|
755
745
|
getTextContent: () => string | null;
|
|
756
746
|
getParentNode: () => ParentNode | null;
|
|
757
747
|
parent: () => ParentNode | null;
|
|
748
|
+
getBoundingClientRect: () => DOMRect;
|
|
758
749
|
rect: () => DOMRect;
|
|
759
750
|
hasClass: (classname: string) => boolean;
|
|
760
751
|
containsFocus: () => boolean;
|
|
@@ -766,17 +757,25 @@ export declare const InlineListLocator: {
|
|
|
766
757
|
exists: () => boolean;
|
|
767
758
|
text: () => string | null;
|
|
768
759
|
empty: () => boolean;
|
|
760
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
769
761
|
descendants: (selector: string) => Element[];
|
|
770
762
|
ancestors: (selector: string) => ParentNode[];
|
|
771
763
|
attribute: (qualifiedName: string) => string | null;
|
|
772
764
|
style: (property: string) => string;
|
|
773
765
|
classNames: () => string[];
|
|
766
|
+
id: () => string;
|
|
767
|
+
matches: (selector: string | undefined) => boolean;
|
|
774
768
|
checked: () => any;
|
|
775
769
|
selected: () => any;
|
|
770
|
+
disabled: () => string | null;
|
|
776
771
|
readonly: () => any;
|
|
772
|
+
role: () => string | null;
|
|
773
|
+
value: () => string | null;
|
|
774
|
+
label: () => string | null | undefined;
|
|
775
|
+
title: () => string | null | undefined;
|
|
776
|
+
children: (selector: string) => Element[];
|
|
777
777
|
parents: (selector: string) => ParentNode[];
|
|
778
778
|
} & {
|
|
779
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
780
779
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
781
780
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
782
781
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -814,6 +813,7 @@ export declare const InlineListLocator: {
|
|
|
814
813
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
815
814
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
816
815
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
816
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
817
817
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
818
818
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
819
819
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -866,25 +866,15 @@ export declare const InlineListLocator: {
|
|
|
866
866
|
toString: (maxLength?: number | undefined, options?: {
|
|
867
867
|
highlight: boolean;
|
|
868
868
|
} | undefined) => string;
|
|
869
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
870
|
-
children: (selector: string) => Element[];
|
|
871
|
-
title: () => string | null | undefined;
|
|
872
|
-
id: () => string;
|
|
873
|
-
tagName: () => string;
|
|
874
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
875
|
-
getBoundingClientRect: () => DOMRect;
|
|
876
|
-
matches: (selector: string | undefined) => boolean;
|
|
877
869
|
visible: () => boolean;
|
|
878
|
-
value: () => string | null;
|
|
879
|
-
disabled: () => string | null;
|
|
880
|
-
role: () => string | null;
|
|
881
|
-
label: () => string | null | undefined;
|
|
882
870
|
getId: () => string;
|
|
883
871
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
884
872
|
getOwnerDocument: () => Document;
|
|
885
873
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
886
874
|
getTagName: () => string;
|
|
875
|
+
tagName: () => string;
|
|
887
876
|
typeIn: (text: string) => Promise<void>;
|
|
877
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
888
878
|
getDOMNode: () => Element;
|
|
889
879
|
node: () => Element;
|
|
890
880
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -894,6 +884,7 @@ export declare const InlineListLocator: {
|
|
|
894
884
|
getTextContent: () => string | null;
|
|
895
885
|
getParentNode: () => ParentNode | null;
|
|
896
886
|
parent: () => ParentNode | null;
|
|
887
|
+
getBoundingClientRect: () => DOMRect;
|
|
897
888
|
rect: () => DOMRect;
|
|
898
889
|
hasClass: (classname: string) => boolean;
|
|
899
890
|
containsFocus: () => boolean;
|
|
@@ -905,17 +896,25 @@ export declare const InlineListLocator: {
|
|
|
905
896
|
exists: () => boolean;
|
|
906
897
|
text: () => string | null;
|
|
907
898
|
empty: () => boolean;
|
|
899
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
908
900
|
descendants: (selector: string) => Element[];
|
|
909
901
|
ancestors: (selector: string) => ParentNode[];
|
|
910
902
|
attribute: (qualifiedName: string) => string | null;
|
|
911
903
|
style: (property: string) => string;
|
|
912
904
|
classNames: () => string[];
|
|
905
|
+
id: () => string;
|
|
906
|
+
matches: (selector: string | undefined) => boolean;
|
|
913
907
|
checked: () => any;
|
|
914
908
|
selected: () => any;
|
|
909
|
+
disabled: () => string | null;
|
|
915
910
|
readonly: () => any;
|
|
911
|
+
role: () => string | null;
|
|
912
|
+
value: () => string | null;
|
|
913
|
+
label: () => string | null | undefined;
|
|
914
|
+
title: () => string | null | undefined;
|
|
915
|
+
children: (selector: string) => Element[];
|
|
916
916
|
parents: (selector: string) => ParentNode[];
|
|
917
917
|
} & {
|
|
918
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
919
918
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
920
919
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
921
920
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -953,6 +952,7 @@ export declare const InlineListLocator: {
|
|
|
953
952
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
954
953
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
955
954
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
955
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
956
956
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
957
957
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
958
958
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1007,25 +1007,15 @@ export declare const InlineListLocator: {
|
|
|
1007
1007
|
toString: (maxLength?: number | undefined, options?: {
|
|
1008
1008
|
highlight: boolean;
|
|
1009
1009
|
} | undefined) => string;
|
|
1010
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1011
|
-
children: (selector: string) => Element[];
|
|
1012
|
-
title: () => string | null | undefined;
|
|
1013
|
-
id: () => string;
|
|
1014
|
-
tagName: () => string;
|
|
1015
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1016
|
-
getBoundingClientRect: () => DOMRect;
|
|
1017
|
-
matches: (selector: string | undefined) => boolean;
|
|
1018
1010
|
visible: () => boolean;
|
|
1019
|
-
value: () => string | null;
|
|
1020
|
-
disabled: () => string | null;
|
|
1021
|
-
role: () => string | null;
|
|
1022
|
-
label: () => string | null | undefined;
|
|
1023
1011
|
getId: () => string;
|
|
1024
1012
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1025
1013
|
getOwnerDocument: () => Document;
|
|
1026
1014
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1027
1015
|
getTagName: () => string;
|
|
1016
|
+
tagName: () => string;
|
|
1028
1017
|
typeIn: (text: string) => Promise<void>;
|
|
1018
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1029
1019
|
getDOMNode: () => Element;
|
|
1030
1020
|
node: () => Element;
|
|
1031
1021
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1035,6 +1025,7 @@ export declare const InlineListLocator: {
|
|
|
1035
1025
|
getTextContent: () => string | null;
|
|
1036
1026
|
getParentNode: () => ParentNode | null;
|
|
1037
1027
|
parent: () => ParentNode | null;
|
|
1028
|
+
getBoundingClientRect: () => DOMRect;
|
|
1038
1029
|
rect: () => DOMRect;
|
|
1039
1030
|
hasClass: (classname: string) => boolean;
|
|
1040
1031
|
containsFocus: () => boolean;
|
|
@@ -1046,17 +1037,25 @@ export declare const InlineListLocator: {
|
|
|
1046
1037
|
exists: () => boolean;
|
|
1047
1038
|
text: () => string | null;
|
|
1048
1039
|
empty: () => boolean;
|
|
1040
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1049
1041
|
descendants: (selector: string) => Element[];
|
|
1050
1042
|
ancestors: (selector: string) => ParentNode[];
|
|
1051
1043
|
attribute: (qualifiedName: string) => string | null;
|
|
1052
1044
|
style: (property: string) => string;
|
|
1053
1045
|
classNames: () => string[];
|
|
1046
|
+
id: () => string;
|
|
1047
|
+
matches: (selector: string | undefined) => boolean;
|
|
1054
1048
|
checked: () => any;
|
|
1055
1049
|
selected: () => any;
|
|
1050
|
+
disabled: () => string | null;
|
|
1056
1051
|
readonly: () => any;
|
|
1052
|
+
role: () => string | null;
|
|
1053
|
+
value: () => string | null;
|
|
1054
|
+
label: () => string | null | undefined;
|
|
1055
|
+
title: () => string | null | undefined;
|
|
1056
|
+
children: (selector: string) => Element[];
|
|
1057
1057
|
parents: (selector: string) => ParentNode[];
|
|
1058
1058
|
} & {
|
|
1059
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1060
1059
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1061
1060
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1062
1061
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1094,6 +1093,7 @@ export declare const InlineListLocator: {
|
|
|
1094
1093
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1095
1094
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1096
1095
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1096
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1097
1097
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1098
1098
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1099
1099
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1149,25 +1149,15 @@ export declare const InlineListLocator: {
|
|
|
1149
1149
|
toString: (maxLength?: number | undefined, options?: {
|
|
1150
1150
|
highlight: boolean;
|
|
1151
1151
|
} | undefined) => string;
|
|
1152
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1153
|
-
children: (selector: string) => Element[];
|
|
1154
|
-
title: () => string | null | undefined;
|
|
1155
|
-
id: () => string;
|
|
1156
|
-
tagName: () => string;
|
|
1157
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1158
|
-
getBoundingClientRect: () => DOMRect;
|
|
1159
|
-
matches: (selector: string | undefined) => boolean;
|
|
1160
1152
|
visible: () => boolean;
|
|
1161
|
-
value: () => string | null;
|
|
1162
|
-
disabled: () => string | null;
|
|
1163
|
-
role: () => string | null;
|
|
1164
|
-
label: () => string | null | undefined;
|
|
1165
1153
|
getId: () => string;
|
|
1166
1154
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1167
1155
|
getOwnerDocument: () => Document;
|
|
1168
1156
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1169
1157
|
getTagName: () => string;
|
|
1158
|
+
tagName: () => string;
|
|
1170
1159
|
typeIn: (text: string) => Promise<void>;
|
|
1160
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1171
1161
|
getDOMNode: () => Element;
|
|
1172
1162
|
node: () => Element;
|
|
1173
1163
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1177,6 +1167,7 @@ export declare const InlineListLocator: {
|
|
|
1177
1167
|
getTextContent: () => string | null;
|
|
1178
1168
|
getParentNode: () => ParentNode | null;
|
|
1179
1169
|
parent: () => ParentNode | null;
|
|
1170
|
+
getBoundingClientRect: () => DOMRect;
|
|
1180
1171
|
rect: () => DOMRect;
|
|
1181
1172
|
hasClass: (classname: string) => boolean;
|
|
1182
1173
|
containsFocus: () => boolean;
|
|
@@ -1188,17 +1179,25 @@ export declare const InlineListLocator: {
|
|
|
1188
1179
|
exists: () => boolean;
|
|
1189
1180
|
text: () => string | null;
|
|
1190
1181
|
empty: () => boolean;
|
|
1182
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1191
1183
|
descendants: (selector: string) => Element[];
|
|
1192
1184
|
ancestors: (selector: string) => ParentNode[];
|
|
1193
1185
|
attribute: (qualifiedName: string) => string | null;
|
|
1194
1186
|
style: (property: string) => string;
|
|
1195
1187
|
classNames: () => string[];
|
|
1188
|
+
id: () => string;
|
|
1189
|
+
matches: (selector: string | undefined) => boolean;
|
|
1196
1190
|
checked: () => any;
|
|
1197
1191
|
selected: () => any;
|
|
1192
|
+
disabled: () => string | null;
|
|
1198
1193
|
readonly: () => any;
|
|
1194
|
+
role: () => string | null;
|
|
1195
|
+
value: () => string | null;
|
|
1196
|
+
label: () => string | null | undefined;
|
|
1197
|
+
title: () => string | null | undefined;
|
|
1198
|
+
children: (selector: string) => Element[];
|
|
1199
1199
|
parents: (selector: string) => ParentNode[];
|
|
1200
1200
|
} & {
|
|
1201
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1202
1201
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1203
1202
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1204
1203
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1236,6 +1235,7 @@ export declare const InlineListLocator: {
|
|
|
1236
1235
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1237
1236
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1238
1237
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1238
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1239
1239
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1240
1240
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1241
1241
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1288,25 +1288,15 @@ export declare const InlineListLocator: {
|
|
|
1288
1288
|
toString: (maxLength?: number | undefined, options?: {
|
|
1289
1289
|
highlight: boolean;
|
|
1290
1290
|
} | undefined) => string;
|
|
1291
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1292
|
-
children: (selector: string) => Element[];
|
|
1293
|
-
title: () => string | null | undefined;
|
|
1294
|
-
id: () => string;
|
|
1295
|
-
tagName: () => string;
|
|
1296
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1297
|
-
getBoundingClientRect: () => DOMRect;
|
|
1298
|
-
matches: (selector: string | undefined) => boolean;
|
|
1299
1291
|
visible: () => boolean;
|
|
1300
|
-
value: () => string | null;
|
|
1301
|
-
disabled: () => string | null;
|
|
1302
|
-
role: () => string | null;
|
|
1303
|
-
label: () => string | null | undefined;
|
|
1304
1292
|
getId: () => string;
|
|
1305
1293
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1306
1294
|
getOwnerDocument: () => Document;
|
|
1307
1295
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1308
1296
|
getTagName: () => string;
|
|
1297
|
+
tagName: () => string;
|
|
1309
1298
|
typeIn: (text: string) => Promise<void>;
|
|
1299
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1310
1300
|
getDOMNode: () => Element;
|
|
1311
1301
|
node: () => Element;
|
|
1312
1302
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1316,6 +1306,7 @@ export declare const InlineListLocator: {
|
|
|
1316
1306
|
getTextContent: () => string | null;
|
|
1317
1307
|
getParentNode: () => ParentNode | null;
|
|
1318
1308
|
parent: () => ParentNode | null;
|
|
1309
|
+
getBoundingClientRect: () => DOMRect;
|
|
1319
1310
|
rect: () => DOMRect;
|
|
1320
1311
|
hasClass: (classname: string) => boolean;
|
|
1321
1312
|
containsFocus: () => boolean;
|
|
@@ -1327,17 +1318,25 @@ export declare const InlineListLocator: {
|
|
|
1327
1318
|
exists: () => boolean;
|
|
1328
1319
|
text: () => string | null;
|
|
1329
1320
|
empty: () => boolean;
|
|
1321
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1330
1322
|
descendants: (selector: string) => Element[];
|
|
1331
1323
|
ancestors: (selector: string) => ParentNode[];
|
|
1332
1324
|
attribute: (qualifiedName: string) => string | null;
|
|
1333
1325
|
style: (property: string) => string;
|
|
1334
1326
|
classNames: () => string[];
|
|
1327
|
+
id: () => string;
|
|
1328
|
+
matches: (selector: string | undefined) => boolean;
|
|
1335
1329
|
checked: () => any;
|
|
1336
1330
|
selected: () => any;
|
|
1331
|
+
disabled: () => string | null;
|
|
1337
1332
|
readonly: () => any;
|
|
1333
|
+
role: () => string | null;
|
|
1334
|
+
value: () => string | null;
|
|
1335
|
+
label: () => string | null | undefined;
|
|
1336
|
+
title: () => string | null | undefined;
|
|
1337
|
+
children: (selector: string) => Element[];
|
|
1338
1338
|
parents: (selector: string) => ParentNode[];
|
|
1339
1339
|
} & {
|
|
1340
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1341
1340
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1342
1341
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1343
1342
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1375,6 +1374,7 @@ export declare const InlineListLocator: {
|
|
|
1375
1374
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1376
1375
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1377
1376
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1377
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1378
1378
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1379
1379
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1380
1380
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1429,25 +1429,15 @@ export declare const InlineListLocator: {
|
|
|
1429
1429
|
toString: (maxLength?: number | undefined, options?: {
|
|
1430
1430
|
highlight: boolean;
|
|
1431
1431
|
} | undefined) => string;
|
|
1432
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1433
|
-
children: (selector: string) => Element[];
|
|
1434
|
-
title: () => string | null | undefined;
|
|
1435
|
-
id: () => string;
|
|
1436
|
-
tagName: () => string;
|
|
1437
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1438
|
-
getBoundingClientRect: () => DOMRect;
|
|
1439
|
-
matches: (selector: string | undefined) => boolean;
|
|
1440
1432
|
visible: () => boolean;
|
|
1441
|
-
value: () => string | null;
|
|
1442
|
-
disabled: () => string | null;
|
|
1443
|
-
role: () => string | null;
|
|
1444
|
-
label: () => string | null | undefined;
|
|
1445
1433
|
getId: () => string;
|
|
1446
1434
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1447
1435
|
getOwnerDocument: () => Document;
|
|
1448
1436
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1449
1437
|
getTagName: () => string;
|
|
1438
|
+
tagName: () => string;
|
|
1450
1439
|
typeIn: (text: string) => Promise<void>;
|
|
1440
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1451
1441
|
getDOMNode: () => Element;
|
|
1452
1442
|
node: () => Element;
|
|
1453
1443
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1457,6 +1447,7 @@ export declare const InlineListLocator: {
|
|
|
1457
1447
|
getTextContent: () => string | null;
|
|
1458
1448
|
getParentNode: () => ParentNode | null;
|
|
1459
1449
|
parent: () => ParentNode | null;
|
|
1450
|
+
getBoundingClientRect: () => DOMRect;
|
|
1460
1451
|
rect: () => DOMRect;
|
|
1461
1452
|
hasClass: (classname: string) => boolean;
|
|
1462
1453
|
containsFocus: () => boolean;
|
|
@@ -1468,17 +1459,25 @@ export declare const InlineListLocator: {
|
|
|
1468
1459
|
exists: () => boolean;
|
|
1469
1460
|
text: () => string | null;
|
|
1470
1461
|
empty: () => boolean;
|
|
1462
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1471
1463
|
descendants: (selector: string) => Element[];
|
|
1472
1464
|
ancestors: (selector: string) => ParentNode[];
|
|
1473
1465
|
attribute: (qualifiedName: string) => string | null;
|
|
1474
1466
|
style: (property: string) => string;
|
|
1475
1467
|
classNames: () => string[];
|
|
1468
|
+
id: () => string;
|
|
1469
|
+
matches: (selector: string | undefined) => boolean;
|
|
1476
1470
|
checked: () => any;
|
|
1477
1471
|
selected: () => any;
|
|
1472
|
+
disabled: () => string | null;
|
|
1478
1473
|
readonly: () => any;
|
|
1474
|
+
role: () => string | null;
|
|
1475
|
+
value: () => string | null;
|
|
1476
|
+
label: () => string | null | undefined;
|
|
1477
|
+
title: () => string | null | undefined;
|
|
1478
|
+
children: (selector: string) => Element[];
|
|
1479
1479
|
parents: (selector: string) => ParentNode[];
|
|
1480
1480
|
} & {
|
|
1481
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1482
1481
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1483
1482
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1484
1483
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1516,6 +1515,7 @@ export declare const InlineListLocator: {
|
|
|
1516
1515
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1517
1516
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1518
1517
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1518
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1519
1519
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1520
1520
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1521
1521
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1571,25 +1571,15 @@ export declare const InlineListLocator: {
|
|
|
1571
1571
|
toString: (maxLength?: number | undefined, options?: {
|
|
1572
1572
|
highlight: boolean;
|
|
1573
1573
|
} | undefined) => string;
|
|
1574
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1575
|
-
children: (selector: string) => Element[];
|
|
1576
|
-
title: () => string | null | undefined;
|
|
1577
|
-
id: () => string;
|
|
1578
|
-
tagName: () => string;
|
|
1579
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1580
|
-
getBoundingClientRect: () => DOMRect;
|
|
1581
|
-
matches: (selector: string | undefined) => boolean;
|
|
1582
1574
|
visible: () => boolean;
|
|
1583
|
-
value: () => string | null;
|
|
1584
|
-
disabled: () => string | null;
|
|
1585
|
-
role: () => string | null;
|
|
1586
|
-
label: () => string | null | undefined;
|
|
1587
1575
|
getId: () => string;
|
|
1588
1576
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1589
1577
|
getOwnerDocument: () => Document;
|
|
1590
1578
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1591
1579
|
getTagName: () => string;
|
|
1580
|
+
tagName: () => string;
|
|
1592
1581
|
typeIn: (text: string) => Promise<void>;
|
|
1582
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1593
1583
|
getDOMNode: () => Element;
|
|
1594
1584
|
node: () => Element;
|
|
1595
1585
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1599,6 +1589,7 @@ export declare const InlineListLocator: {
|
|
|
1599
1589
|
getTextContent: () => string | null;
|
|
1600
1590
|
getParentNode: () => ParentNode | null;
|
|
1601
1591
|
parent: () => ParentNode | null;
|
|
1592
|
+
getBoundingClientRect: () => DOMRect;
|
|
1602
1593
|
rect: () => DOMRect;
|
|
1603
1594
|
hasClass: (classname: string) => boolean;
|
|
1604
1595
|
containsFocus: () => boolean;
|
|
@@ -1610,17 +1601,25 @@ export declare const InlineListLocator: {
|
|
|
1610
1601
|
exists: () => boolean;
|
|
1611
1602
|
text: () => string | null;
|
|
1612
1603
|
empty: () => boolean;
|
|
1604
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1613
1605
|
descendants: (selector: string) => Element[];
|
|
1614
1606
|
ancestors: (selector: string) => ParentNode[];
|
|
1615
1607
|
attribute: (qualifiedName: string) => string | null;
|
|
1616
1608
|
style: (property: string) => string;
|
|
1617
1609
|
classNames: () => string[];
|
|
1610
|
+
id: () => string;
|
|
1611
|
+
matches: (selector: string | undefined) => boolean;
|
|
1618
1612
|
checked: () => any;
|
|
1619
1613
|
selected: () => any;
|
|
1614
|
+
disabled: () => string | null;
|
|
1620
1615
|
readonly: () => any;
|
|
1616
|
+
role: () => string | null;
|
|
1617
|
+
value: () => string | null;
|
|
1618
|
+
label: () => string | null | undefined;
|
|
1619
|
+
title: () => string | null | undefined;
|
|
1620
|
+
children: (selector: string) => Element[];
|
|
1621
1621
|
parents: (selector: string) => ParentNode[];
|
|
1622
1622
|
} & {
|
|
1623
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1624
1623
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1625
1624
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1626
1625
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1658,6 +1657,7 @@ export declare const InlineListLocator: {
|
|
|
1658
1657
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1659
1658
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1660
1659
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1660
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1661
1661
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1662
1662
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1663
1663
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1710,25 +1710,15 @@ export declare const InlineListLocator: {
|
|
|
1710
1710
|
toString: (maxLength?: number | undefined, options?: {
|
|
1711
1711
|
highlight: boolean;
|
|
1712
1712
|
} | undefined) => string;
|
|
1713
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1714
|
-
children: (selector: string) => Element[];
|
|
1715
|
-
title: () => string | null | undefined;
|
|
1716
|
-
id: () => string;
|
|
1717
|
-
tagName: () => string;
|
|
1718
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1719
|
-
getBoundingClientRect: () => DOMRect;
|
|
1720
|
-
matches: (selector: string | undefined) => boolean;
|
|
1721
1713
|
visible: () => boolean;
|
|
1722
|
-
value: () => string | null;
|
|
1723
|
-
disabled: () => string | null;
|
|
1724
|
-
role: () => string | null;
|
|
1725
|
-
label: () => string | null | undefined;
|
|
1726
1714
|
getId: () => string;
|
|
1727
1715
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1728
1716
|
getOwnerDocument: () => Document;
|
|
1729
1717
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1730
1718
|
getTagName: () => string;
|
|
1719
|
+
tagName: () => string;
|
|
1731
1720
|
typeIn: (text: string) => Promise<void>;
|
|
1721
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1732
1722
|
getDOMNode: () => Element;
|
|
1733
1723
|
node: () => Element;
|
|
1734
1724
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1738,6 +1728,7 @@ export declare const InlineListLocator: {
|
|
|
1738
1728
|
getTextContent: () => string | null;
|
|
1739
1729
|
getParentNode: () => ParentNode | null;
|
|
1740
1730
|
parent: () => ParentNode | null;
|
|
1731
|
+
getBoundingClientRect: () => DOMRect;
|
|
1741
1732
|
rect: () => DOMRect;
|
|
1742
1733
|
hasClass: (classname: string) => boolean;
|
|
1743
1734
|
containsFocus: () => boolean;
|
|
@@ -1749,17 +1740,25 @@ export declare const InlineListLocator: {
|
|
|
1749
1740
|
exists: () => boolean;
|
|
1750
1741
|
text: () => string | null;
|
|
1751
1742
|
empty: () => boolean;
|
|
1743
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1752
1744
|
descendants: (selector: string) => Element[];
|
|
1753
1745
|
ancestors: (selector: string) => ParentNode[];
|
|
1754
1746
|
attribute: (qualifiedName: string) => string | null;
|
|
1755
1747
|
style: (property: string) => string;
|
|
1756
1748
|
classNames: () => string[];
|
|
1749
|
+
id: () => string;
|
|
1750
|
+
matches: (selector: string | undefined) => boolean;
|
|
1757
1751
|
checked: () => any;
|
|
1758
1752
|
selected: () => any;
|
|
1753
|
+
disabled: () => string | null;
|
|
1759
1754
|
readonly: () => any;
|
|
1755
|
+
role: () => string | null;
|
|
1756
|
+
value: () => string | null;
|
|
1757
|
+
label: () => string | null | undefined;
|
|
1758
|
+
title: () => string | null | undefined;
|
|
1759
|
+
children: (selector: string) => Element[];
|
|
1760
1760
|
parents: (selector: string) => ParentNode[];
|
|
1761
1761
|
} & {
|
|
1762
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1763
1762
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1764
1763
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1765
1764
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1797,6 +1796,7 @@ export declare const InlineListLocator: {
|
|
|
1797
1796
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1798
1797
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1799
1798
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1799
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1800
1800
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1801
1801
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1802
1802
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1851,25 +1851,15 @@ export declare const InlineListLocator: {
|
|
|
1851
1851
|
toString: (maxLength?: number | undefined, options?: {
|
|
1852
1852
|
highlight: boolean;
|
|
1853
1853
|
} | undefined) => string;
|
|
1854
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1855
|
-
children: (selector: string) => Element[];
|
|
1856
|
-
title: () => string | null | undefined;
|
|
1857
|
-
id: () => string;
|
|
1858
|
-
tagName: () => string;
|
|
1859
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1860
|
-
getBoundingClientRect: () => DOMRect;
|
|
1861
|
-
matches: (selector: string | undefined) => boolean;
|
|
1862
1854
|
visible: () => boolean;
|
|
1863
|
-
value: () => string | null;
|
|
1864
|
-
disabled: () => string | null;
|
|
1865
|
-
role: () => string | null;
|
|
1866
|
-
label: () => string | null | undefined;
|
|
1867
1855
|
getId: () => string;
|
|
1868
1856
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1869
1857
|
getOwnerDocument: () => Document;
|
|
1870
1858
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1871
1859
|
getTagName: () => string;
|
|
1860
|
+
tagName: () => string;
|
|
1872
1861
|
typeIn: (text: string) => Promise<void>;
|
|
1862
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1873
1863
|
getDOMNode: () => Element;
|
|
1874
1864
|
node: () => Element;
|
|
1875
1865
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1879,6 +1869,7 @@ export declare const InlineListLocator: {
|
|
|
1879
1869
|
getTextContent: () => string | null;
|
|
1880
1870
|
getParentNode: () => ParentNode | null;
|
|
1881
1871
|
parent: () => ParentNode | null;
|
|
1872
|
+
getBoundingClientRect: () => DOMRect;
|
|
1882
1873
|
rect: () => DOMRect;
|
|
1883
1874
|
hasClass: (classname: string) => boolean;
|
|
1884
1875
|
containsFocus: () => boolean;
|
|
@@ -1890,17 +1881,25 @@ export declare const InlineListLocator: {
|
|
|
1890
1881
|
exists: () => boolean;
|
|
1891
1882
|
text: () => string | null;
|
|
1892
1883
|
empty: () => boolean;
|
|
1884
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1893
1885
|
descendants: (selector: string) => Element[];
|
|
1894
1886
|
ancestors: (selector: string) => ParentNode[];
|
|
1895
1887
|
attribute: (qualifiedName: string) => string | null;
|
|
1896
1888
|
style: (property: string) => string;
|
|
1897
1889
|
classNames: () => string[];
|
|
1890
|
+
id: () => string;
|
|
1891
|
+
matches: (selector: string | undefined) => boolean;
|
|
1898
1892
|
checked: () => any;
|
|
1899
1893
|
selected: () => any;
|
|
1894
|
+
disabled: () => string | null;
|
|
1900
1895
|
readonly: () => any;
|
|
1896
|
+
role: () => string | null;
|
|
1897
|
+
value: () => string | null;
|
|
1898
|
+
label: () => string | null | undefined;
|
|
1899
|
+
title: () => string | null | undefined;
|
|
1900
|
+
children: (selector: string) => Element[];
|
|
1901
1901
|
parents: (selector: string) => ParentNode[];
|
|
1902
1902
|
} & {
|
|
1903
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1904
1903
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1905
1904
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1906
1905
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1938,6 +1937,7 @@ export declare const InlineListLocator: {
|
|
|
1938
1937
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1939
1938
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1940
1939
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1940
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1941
1941
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1942
1942
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1943
1943
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|