@instructure/ui-list 8.10.1 → 8.10.3-snapshot.12
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/LICENSE.md +27 -0
- package/es/InlineList/InlineListItem/index.js +23 -11
- package/es/InlineList/index.js +18 -6
- package/es/List/ListItem/index.js +23 -11
- package/es/List/index.js +20 -8
- package/lib/InlineList/InlineListItem/index.js +23 -11
- package/lib/InlineList/index.js +18 -6
- package/lib/List/ListItem/index.js +23 -11
- package/lib/List/index.js +20 -8
- package/package.json +15 -14
- package/src/InlineList/InlineListItem/index.tsx +8 -1
- package/src/InlineList/InlineListItem/props.ts +1 -1
- package/src/InlineList/index.tsx +8 -1
- package/src/InlineList/props.ts +1 -1
- package/src/List/ListItem/index.tsx +8 -1
- package/src/List/ListItem/props.ts +1 -1
- package/src/List/index.tsx +8 -1
- package/src/List/props.ts +1 -1
- package/types/InlineList/InlineListItem/InlineListItemLocator.d.ts +64 -64
- package/types/InlineList/InlineListItem/index.d.ts +4 -2
- package/types/InlineList/InlineListItem/index.d.ts.map +1 -1
- package/types/InlineList/InlineListItem/props.d.ts +1 -1
- package/types/InlineList/InlineListItem/props.d.ts.map +1 -1
- package/types/InlineList/InlineListLocator.d.ts +224 -224
- package/types/InlineList/index.d.ts +4 -2
- package/types/InlineList/index.d.ts.map +1 -1
- package/types/InlineList/props.d.ts +1 -1
- package/types/InlineList/props.d.ts.map +1 -1
- package/types/List/ListItem/index.d.ts +4 -2
- package/types/List/ListItem/index.d.ts.map +1 -1
- package/types/List/ListItem/props.d.ts +1 -1
- package/types/List/ListItem/props.d.ts.map +1 -1
- package/types/List/ListLocator.d.ts +224 -224
- package/types/List/index.d.ts +4 -2
- package/types/List/index.d.ts.map +1 -1
- package/types/List/props.d.ts +1 -1
- package/types/List/props.d.ts.map +1 -1
|
@@ -13,24 +13,28 @@ export declare const InlineListLocator: {
|
|
|
13
13
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
14
14
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
15
15
|
} & {
|
|
16
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
17
|
+
highlight: boolean;
|
|
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;
|
|
16
27
|
visible: () => boolean;
|
|
17
28
|
value: () => string | null;
|
|
18
29
|
disabled: () => string | null;
|
|
19
30
|
role: () => string | null;
|
|
20
|
-
id: () => string;
|
|
21
31
|
label: () => string | null | undefined;
|
|
22
|
-
title: () => string | null | undefined;
|
|
23
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
24
|
-
highlight: boolean;
|
|
25
|
-
} | undefined) => string;
|
|
26
32
|
getId: () => string;
|
|
27
33
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
28
34
|
getOwnerDocument: () => Document;
|
|
29
35
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
30
36
|
getTagName: () => string;
|
|
31
|
-
tagName: () => string;
|
|
32
37
|
typeIn: (text: string) => Promise<void>;
|
|
33
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
34
38
|
getDOMNode: () => Element;
|
|
35
39
|
node: () => Element;
|
|
36
40
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -38,9 +42,8 @@ export declare const InlineListLocator: {
|
|
|
38
42
|
} | undefined) => void;
|
|
39
43
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
40
44
|
getTextContent: () => string | null;
|
|
41
|
-
getParentNode: () =>
|
|
42
|
-
parent: () =>
|
|
43
|
-
getBoundingClientRect: () => DOMRect;
|
|
45
|
+
getParentNode: () => ParentNode | null;
|
|
46
|
+
parent: () => ParentNode | null;
|
|
44
47
|
rect: () => DOMRect;
|
|
45
48
|
hasClass: (classname: string) => boolean;
|
|
46
49
|
containsFocus: () => boolean;
|
|
@@ -52,19 +55,17 @@ export declare const InlineListLocator: {
|
|
|
52
55
|
exists: () => boolean;
|
|
53
56
|
text: () => string | null;
|
|
54
57
|
empty: () => boolean;
|
|
55
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
56
58
|
descendants: (selector: string) => Element[];
|
|
57
|
-
ancestors: (selector: string) =>
|
|
59
|
+
ancestors: (selector: string) => ParentNode[];
|
|
58
60
|
attribute: (qualifiedName: string) => string | null;
|
|
59
61
|
style: (property: string) => string;
|
|
60
62
|
classNames: () => string[];
|
|
61
|
-
matches: (selector: string | undefined) => boolean;
|
|
62
63
|
checked: () => any;
|
|
63
64
|
selected: () => any;
|
|
64
65
|
readonly: () => any;
|
|
65
|
-
|
|
66
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
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>;
|
|
68
69
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
69
70
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
70
71
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -102,7 +103,6 @@ export declare const InlineListLocator: {
|
|
|
102
103
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
103
104
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
104
105
|
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>;
|
|
@@ -154,24 +154,28 @@ export declare const InlineListLocator: {
|
|
|
154
154
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
155
155
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
156
156
|
} & {
|
|
157
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
158
|
+
highlight: boolean;
|
|
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;
|
|
157
168
|
visible: () => boolean;
|
|
158
169
|
value: () => string | null;
|
|
159
170
|
disabled: () => string | null;
|
|
160
171
|
role: () => string | null;
|
|
161
|
-
id: () => string;
|
|
162
172
|
label: () => string | null | undefined;
|
|
163
|
-
title: () => string | null | undefined;
|
|
164
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
165
|
-
highlight: boolean;
|
|
166
|
-
} | undefined) => string;
|
|
167
173
|
getId: () => string;
|
|
168
174
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
169
175
|
getOwnerDocument: () => Document;
|
|
170
176
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
171
177
|
getTagName: () => string;
|
|
172
|
-
tagName: () => string;
|
|
173
178
|
typeIn: (text: string) => Promise<void>;
|
|
174
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
175
179
|
getDOMNode: () => Element;
|
|
176
180
|
node: () => Element;
|
|
177
181
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -179,9 +183,8 @@ export declare const InlineListLocator: {
|
|
|
179
183
|
} | undefined) => void;
|
|
180
184
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
181
185
|
getTextContent: () => string | null;
|
|
182
|
-
getParentNode: () =>
|
|
183
|
-
parent: () =>
|
|
184
|
-
getBoundingClientRect: () => DOMRect;
|
|
186
|
+
getParentNode: () => ParentNode | null;
|
|
187
|
+
parent: () => ParentNode | null;
|
|
185
188
|
rect: () => DOMRect;
|
|
186
189
|
hasClass: (classname: string) => boolean;
|
|
187
190
|
containsFocus: () => boolean;
|
|
@@ -193,19 +196,17 @@ export declare const InlineListLocator: {
|
|
|
193
196
|
exists: () => boolean;
|
|
194
197
|
text: () => string | null;
|
|
195
198
|
empty: () => boolean;
|
|
196
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
197
199
|
descendants: (selector: string) => Element[];
|
|
198
|
-
ancestors: (selector: string) =>
|
|
200
|
+
ancestors: (selector: string) => ParentNode[];
|
|
199
201
|
attribute: (qualifiedName: string) => string | null;
|
|
200
202
|
style: (property: string) => string;
|
|
201
203
|
classNames: () => string[];
|
|
202
|
-
matches: (selector: string | undefined) => boolean;
|
|
203
204
|
checked: () => any;
|
|
204
205
|
selected: () => any;
|
|
205
206
|
readonly: () => any;
|
|
206
|
-
|
|
207
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
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>;
|
|
209
210
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
210
211
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
211
212
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -243,7 +244,6 @@ export declare const InlineListLocator: {
|
|
|
243
244
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
244
245
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
245
246
|
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>;
|
|
@@ -302,24 +302,28 @@ export declare const InlineListLocator: {
|
|
|
302
302
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
303
303
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
304
304
|
} & {
|
|
305
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
306
|
+
highlight: boolean;
|
|
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;
|
|
305
316
|
visible: () => boolean;
|
|
306
317
|
value: () => string | null;
|
|
307
318
|
disabled: () => string | null;
|
|
308
319
|
role: () => string | null;
|
|
309
|
-
id: () => string;
|
|
310
320
|
label: () => string | null | undefined;
|
|
311
|
-
title: () => string | null | undefined;
|
|
312
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
313
|
-
highlight: boolean;
|
|
314
|
-
} | undefined) => string;
|
|
315
321
|
getId: () => string;
|
|
316
322
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
317
323
|
getOwnerDocument: () => Document;
|
|
318
324
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
319
325
|
getTagName: () => string;
|
|
320
|
-
tagName: () => string;
|
|
321
326
|
typeIn: (text: string) => Promise<void>;
|
|
322
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
323
327
|
getDOMNode: () => Element;
|
|
324
328
|
node: () => Element;
|
|
325
329
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -327,9 +331,8 @@ export declare const InlineListLocator: {
|
|
|
327
331
|
} | undefined) => void;
|
|
328
332
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
329
333
|
getTextContent: () => string | null;
|
|
330
|
-
getParentNode: () =>
|
|
331
|
-
parent: () =>
|
|
332
|
-
getBoundingClientRect: () => DOMRect;
|
|
334
|
+
getParentNode: () => ParentNode | null;
|
|
335
|
+
parent: () => ParentNode | null;
|
|
333
336
|
rect: () => DOMRect;
|
|
334
337
|
hasClass: (classname: string) => boolean;
|
|
335
338
|
containsFocus: () => boolean;
|
|
@@ -341,19 +344,17 @@ export declare const InlineListLocator: {
|
|
|
341
344
|
exists: () => boolean;
|
|
342
345
|
text: () => string | null;
|
|
343
346
|
empty: () => boolean;
|
|
344
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
345
347
|
descendants: (selector: string) => Element[];
|
|
346
|
-
ancestors: (selector: string) =>
|
|
348
|
+
ancestors: (selector: string) => ParentNode[];
|
|
347
349
|
attribute: (qualifiedName: string) => string | null;
|
|
348
350
|
style: (property: string) => string;
|
|
349
351
|
classNames: () => string[];
|
|
350
|
-
matches: (selector: string | undefined) => boolean;
|
|
351
352
|
checked: () => any;
|
|
352
353
|
selected: () => any;
|
|
353
354
|
readonly: () => any;
|
|
354
|
-
|
|
355
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
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>;
|
|
357
358
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
358
359
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
359
360
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -391,7 +392,6 @@ export declare const InlineListLocator: {
|
|
|
391
392
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
392
393
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
393
394
|
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>;
|
|
@@ -441,24 +441,28 @@ export declare const InlineListLocator: {
|
|
|
441
441
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
442
442
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
443
443
|
} & {
|
|
444
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
445
|
+
highlight: boolean;
|
|
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;
|
|
444
455
|
visible: () => boolean;
|
|
445
456
|
value: () => string | null;
|
|
446
457
|
disabled: () => string | null;
|
|
447
458
|
role: () => string | null;
|
|
448
|
-
id: () => string;
|
|
449
459
|
label: () => string | null | undefined;
|
|
450
|
-
title: () => string | null | undefined;
|
|
451
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
452
|
-
highlight: boolean;
|
|
453
|
-
} | undefined) => string;
|
|
454
460
|
getId: () => string;
|
|
455
461
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
456
462
|
getOwnerDocument: () => Document;
|
|
457
463
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
458
464
|
getTagName: () => string;
|
|
459
|
-
tagName: () => string;
|
|
460
465
|
typeIn: (text: string) => Promise<void>;
|
|
461
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
462
466
|
getDOMNode: () => Element;
|
|
463
467
|
node: () => Element;
|
|
464
468
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -466,9 +470,8 @@ export declare const InlineListLocator: {
|
|
|
466
470
|
} | undefined) => void;
|
|
467
471
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
468
472
|
getTextContent: () => string | null;
|
|
469
|
-
getParentNode: () =>
|
|
470
|
-
parent: () =>
|
|
471
|
-
getBoundingClientRect: () => DOMRect;
|
|
473
|
+
getParentNode: () => ParentNode | null;
|
|
474
|
+
parent: () => ParentNode | null;
|
|
472
475
|
rect: () => DOMRect;
|
|
473
476
|
hasClass: (classname: string) => boolean;
|
|
474
477
|
containsFocus: () => boolean;
|
|
@@ -480,19 +483,17 @@ export declare const InlineListLocator: {
|
|
|
480
483
|
exists: () => boolean;
|
|
481
484
|
text: () => string | null;
|
|
482
485
|
empty: () => boolean;
|
|
483
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
484
486
|
descendants: (selector: string) => Element[];
|
|
485
|
-
ancestors: (selector: string) =>
|
|
487
|
+
ancestors: (selector: string) => ParentNode[];
|
|
486
488
|
attribute: (qualifiedName: string) => string | null;
|
|
487
489
|
style: (property: string) => string;
|
|
488
490
|
classNames: () => string[];
|
|
489
|
-
matches: (selector: string | undefined) => boolean;
|
|
490
491
|
checked: () => any;
|
|
491
492
|
selected: () => any;
|
|
492
493
|
readonly: () => any;
|
|
493
|
-
|
|
494
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
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>;
|
|
496
497
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
497
498
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
498
499
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -530,7 +531,6 @@ export declare const InlineListLocator: {
|
|
|
530
531
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
531
532
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
532
533
|
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>;
|
|
@@ -582,24 +582,28 @@ export declare const InlineListLocator: {
|
|
|
582
582
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
583
583
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
584
584
|
} & {
|
|
585
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
586
|
+
highlight: boolean;
|
|
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;
|
|
585
596
|
visible: () => boolean;
|
|
586
597
|
value: () => string | null;
|
|
587
598
|
disabled: () => string | null;
|
|
588
599
|
role: () => string | null;
|
|
589
|
-
id: () => string;
|
|
590
600
|
label: () => string | null | undefined;
|
|
591
|
-
title: () => string | null | undefined;
|
|
592
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
593
|
-
highlight: boolean;
|
|
594
|
-
} | undefined) => string;
|
|
595
601
|
getId: () => string;
|
|
596
602
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
597
603
|
getOwnerDocument: () => Document;
|
|
598
604
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
599
605
|
getTagName: () => string;
|
|
600
|
-
tagName: () => string;
|
|
601
606
|
typeIn: (text: string) => Promise<void>;
|
|
602
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
603
607
|
getDOMNode: () => Element;
|
|
604
608
|
node: () => Element;
|
|
605
609
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -607,9 +611,8 @@ export declare const InlineListLocator: {
|
|
|
607
611
|
} | undefined) => void;
|
|
608
612
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
609
613
|
getTextContent: () => string | null;
|
|
610
|
-
getParentNode: () =>
|
|
611
|
-
parent: () =>
|
|
612
|
-
getBoundingClientRect: () => DOMRect;
|
|
614
|
+
getParentNode: () => ParentNode | null;
|
|
615
|
+
parent: () => ParentNode | null;
|
|
613
616
|
rect: () => DOMRect;
|
|
614
617
|
hasClass: (classname: string) => boolean;
|
|
615
618
|
containsFocus: () => boolean;
|
|
@@ -621,19 +624,17 @@ export declare const InlineListLocator: {
|
|
|
621
624
|
exists: () => boolean;
|
|
622
625
|
text: () => string | null;
|
|
623
626
|
empty: () => boolean;
|
|
624
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
625
627
|
descendants: (selector: string) => Element[];
|
|
626
|
-
ancestors: (selector: string) =>
|
|
628
|
+
ancestors: (selector: string) => ParentNode[];
|
|
627
629
|
attribute: (qualifiedName: string) => string | null;
|
|
628
630
|
style: (property: string) => string;
|
|
629
631
|
classNames: () => string[];
|
|
630
|
-
matches: (selector: string | undefined) => boolean;
|
|
631
632
|
checked: () => any;
|
|
632
633
|
selected: () => any;
|
|
633
634
|
readonly: () => any;
|
|
634
|
-
|
|
635
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
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>;
|
|
637
638
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
638
639
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
639
640
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -671,7 +672,6 @@ export declare const InlineListLocator: {
|
|
|
671
672
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
672
673
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
673
674
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
674
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
675
675
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
676
676
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
677
677
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -724,24 +724,28 @@ export declare const InlineListLocator: {
|
|
|
724
724
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
725
725
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
726
726
|
} & {
|
|
727
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
728
|
+
highlight: boolean;
|
|
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;
|
|
727
738
|
visible: () => boolean;
|
|
728
739
|
value: () => string | null;
|
|
729
740
|
disabled: () => string | null;
|
|
730
741
|
role: () => string | null;
|
|
731
|
-
id: () => string;
|
|
732
742
|
label: () => string | null | undefined;
|
|
733
|
-
title: () => string | null | undefined;
|
|
734
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
735
|
-
highlight: boolean;
|
|
736
|
-
} | undefined) => string;
|
|
737
743
|
getId: () => string;
|
|
738
744
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
739
745
|
getOwnerDocument: () => Document;
|
|
740
746
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
741
747
|
getTagName: () => string;
|
|
742
|
-
tagName: () => string;
|
|
743
748
|
typeIn: (text: string) => Promise<void>;
|
|
744
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
745
749
|
getDOMNode: () => Element;
|
|
746
750
|
node: () => Element;
|
|
747
751
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -749,9 +753,8 @@ export declare const InlineListLocator: {
|
|
|
749
753
|
} | undefined) => void;
|
|
750
754
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
751
755
|
getTextContent: () => string | null;
|
|
752
|
-
getParentNode: () =>
|
|
753
|
-
parent: () =>
|
|
754
|
-
getBoundingClientRect: () => DOMRect;
|
|
756
|
+
getParentNode: () => ParentNode | null;
|
|
757
|
+
parent: () => ParentNode | null;
|
|
755
758
|
rect: () => DOMRect;
|
|
756
759
|
hasClass: (classname: string) => boolean;
|
|
757
760
|
containsFocus: () => boolean;
|
|
@@ -763,19 +766,17 @@ export declare const InlineListLocator: {
|
|
|
763
766
|
exists: () => boolean;
|
|
764
767
|
text: () => string | null;
|
|
765
768
|
empty: () => boolean;
|
|
766
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
767
769
|
descendants: (selector: string) => Element[];
|
|
768
|
-
ancestors: (selector: string) =>
|
|
770
|
+
ancestors: (selector: string) => ParentNode[];
|
|
769
771
|
attribute: (qualifiedName: string) => string | null;
|
|
770
772
|
style: (property: string) => string;
|
|
771
773
|
classNames: () => string[];
|
|
772
|
-
matches: (selector: string | undefined) => boolean;
|
|
773
774
|
checked: () => any;
|
|
774
775
|
selected: () => any;
|
|
775
776
|
readonly: () => any;
|
|
776
|
-
|
|
777
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
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>;
|
|
779
780
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
780
781
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
781
782
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -813,7 +814,6 @@ export declare const InlineListLocator: {
|
|
|
813
814
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
814
815
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
815
816
|
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>;
|
|
@@ -863,24 +863,28 @@ export declare const InlineListLocator: {
|
|
|
863
863
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
864
864
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
865
865
|
} & {
|
|
866
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
867
|
+
highlight: boolean;
|
|
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;
|
|
866
877
|
visible: () => boolean;
|
|
867
878
|
value: () => string | null;
|
|
868
879
|
disabled: () => string | null;
|
|
869
880
|
role: () => string | null;
|
|
870
|
-
id: () => string;
|
|
871
881
|
label: () => string | null | undefined;
|
|
872
|
-
title: () => string | null | undefined;
|
|
873
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
874
|
-
highlight: boolean;
|
|
875
|
-
} | undefined) => string;
|
|
876
882
|
getId: () => string;
|
|
877
883
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
878
884
|
getOwnerDocument: () => Document;
|
|
879
885
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
880
886
|
getTagName: () => string;
|
|
881
|
-
tagName: () => string;
|
|
882
887
|
typeIn: (text: string) => Promise<void>;
|
|
883
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
884
888
|
getDOMNode: () => Element;
|
|
885
889
|
node: () => Element;
|
|
886
890
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -888,9 +892,8 @@ export declare const InlineListLocator: {
|
|
|
888
892
|
} | undefined) => void;
|
|
889
893
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
890
894
|
getTextContent: () => string | null;
|
|
891
|
-
getParentNode: () =>
|
|
892
|
-
parent: () =>
|
|
893
|
-
getBoundingClientRect: () => DOMRect;
|
|
895
|
+
getParentNode: () => ParentNode | null;
|
|
896
|
+
parent: () => ParentNode | null;
|
|
894
897
|
rect: () => DOMRect;
|
|
895
898
|
hasClass: (classname: string) => boolean;
|
|
896
899
|
containsFocus: () => boolean;
|
|
@@ -902,19 +905,17 @@ export declare const InlineListLocator: {
|
|
|
902
905
|
exists: () => boolean;
|
|
903
906
|
text: () => string | null;
|
|
904
907
|
empty: () => boolean;
|
|
905
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
906
908
|
descendants: (selector: string) => Element[];
|
|
907
|
-
ancestors: (selector: string) =>
|
|
909
|
+
ancestors: (selector: string) => ParentNode[];
|
|
908
910
|
attribute: (qualifiedName: string) => string | null;
|
|
909
911
|
style: (property: string) => string;
|
|
910
912
|
classNames: () => string[];
|
|
911
|
-
matches: (selector: string | undefined) => boolean;
|
|
912
913
|
checked: () => any;
|
|
913
914
|
selected: () => any;
|
|
914
915
|
readonly: () => any;
|
|
915
|
-
|
|
916
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
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>;
|
|
918
919
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
919
920
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
920
921
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -952,7 +953,6 @@ export declare const InlineListLocator: {
|
|
|
952
953
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
953
954
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
954
955
|
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>;
|
|
@@ -1004,24 +1004,28 @@ export declare const InlineListLocator: {
|
|
|
1004
1004
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
1005
1005
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
1006
1006
|
} & {
|
|
1007
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
1008
|
+
highlight: boolean;
|
|
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;
|
|
1007
1018
|
visible: () => boolean;
|
|
1008
1019
|
value: () => string | null;
|
|
1009
1020
|
disabled: () => string | null;
|
|
1010
1021
|
role: () => string | null;
|
|
1011
|
-
id: () => string;
|
|
1012
1022
|
label: () => string | null | undefined;
|
|
1013
|
-
title: () => string | null | undefined;
|
|
1014
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
1015
|
-
highlight: boolean;
|
|
1016
|
-
} | undefined) => string;
|
|
1017
1023
|
getId: () => string;
|
|
1018
1024
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1019
1025
|
getOwnerDocument: () => Document;
|
|
1020
1026
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1021
1027
|
getTagName: () => string;
|
|
1022
|
-
tagName: () => string;
|
|
1023
1028
|
typeIn: (text: string) => Promise<void>;
|
|
1024
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1025
1029
|
getDOMNode: () => Element;
|
|
1026
1030
|
node: () => Element;
|
|
1027
1031
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1029,9 +1033,8 @@ export declare const InlineListLocator: {
|
|
|
1029
1033
|
} | undefined) => void;
|
|
1030
1034
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
1031
1035
|
getTextContent: () => string | null;
|
|
1032
|
-
getParentNode: () =>
|
|
1033
|
-
parent: () =>
|
|
1034
|
-
getBoundingClientRect: () => DOMRect;
|
|
1036
|
+
getParentNode: () => ParentNode | null;
|
|
1037
|
+
parent: () => ParentNode | null;
|
|
1035
1038
|
rect: () => DOMRect;
|
|
1036
1039
|
hasClass: (classname: string) => boolean;
|
|
1037
1040
|
containsFocus: () => boolean;
|
|
@@ -1043,19 +1046,17 @@ export declare const InlineListLocator: {
|
|
|
1043
1046
|
exists: () => boolean;
|
|
1044
1047
|
text: () => string | null;
|
|
1045
1048
|
empty: () => boolean;
|
|
1046
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1047
1049
|
descendants: (selector: string) => Element[];
|
|
1048
|
-
ancestors: (selector: string) =>
|
|
1050
|
+
ancestors: (selector: string) => ParentNode[];
|
|
1049
1051
|
attribute: (qualifiedName: string) => string | null;
|
|
1050
1052
|
style: (property: string) => string;
|
|
1051
1053
|
classNames: () => string[];
|
|
1052
|
-
matches: (selector: string | undefined) => boolean;
|
|
1053
1054
|
checked: () => any;
|
|
1054
1055
|
selected: () => any;
|
|
1055
1056
|
readonly: () => any;
|
|
1056
|
-
|
|
1057
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
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>;
|
|
1059
1060
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1060
1061
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1061
1062
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1093,7 +1094,6 @@ export declare const InlineListLocator: {
|
|
|
1093
1094
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1094
1095
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1095
1096
|
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>;
|
|
@@ -1146,24 +1146,28 @@ export declare const InlineListLocator: {
|
|
|
1146
1146
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
1147
1147
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
1148
1148
|
} & {
|
|
1149
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
1150
|
+
highlight: boolean;
|
|
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;
|
|
1149
1160
|
visible: () => boolean;
|
|
1150
1161
|
value: () => string | null;
|
|
1151
1162
|
disabled: () => string | null;
|
|
1152
1163
|
role: () => string | null;
|
|
1153
|
-
id: () => string;
|
|
1154
1164
|
label: () => string | null | undefined;
|
|
1155
|
-
title: () => string | null | undefined;
|
|
1156
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
1157
|
-
highlight: boolean;
|
|
1158
|
-
} | undefined) => string;
|
|
1159
1165
|
getId: () => string;
|
|
1160
1166
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1161
1167
|
getOwnerDocument: () => Document;
|
|
1162
1168
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1163
1169
|
getTagName: () => string;
|
|
1164
|
-
tagName: () => string;
|
|
1165
1170
|
typeIn: (text: string) => Promise<void>;
|
|
1166
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1167
1171
|
getDOMNode: () => Element;
|
|
1168
1172
|
node: () => Element;
|
|
1169
1173
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1171,9 +1175,8 @@ export declare const InlineListLocator: {
|
|
|
1171
1175
|
} | undefined) => void;
|
|
1172
1176
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
1173
1177
|
getTextContent: () => string | null;
|
|
1174
|
-
getParentNode: () =>
|
|
1175
|
-
parent: () =>
|
|
1176
|
-
getBoundingClientRect: () => DOMRect;
|
|
1178
|
+
getParentNode: () => ParentNode | null;
|
|
1179
|
+
parent: () => ParentNode | null;
|
|
1177
1180
|
rect: () => DOMRect;
|
|
1178
1181
|
hasClass: (classname: string) => boolean;
|
|
1179
1182
|
containsFocus: () => boolean;
|
|
@@ -1185,19 +1188,17 @@ export declare const InlineListLocator: {
|
|
|
1185
1188
|
exists: () => boolean;
|
|
1186
1189
|
text: () => string | null;
|
|
1187
1190
|
empty: () => boolean;
|
|
1188
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1189
1191
|
descendants: (selector: string) => Element[];
|
|
1190
|
-
ancestors: (selector: string) =>
|
|
1192
|
+
ancestors: (selector: string) => ParentNode[];
|
|
1191
1193
|
attribute: (qualifiedName: string) => string | null;
|
|
1192
1194
|
style: (property: string) => string;
|
|
1193
1195
|
classNames: () => string[];
|
|
1194
|
-
matches: (selector: string | undefined) => boolean;
|
|
1195
1196
|
checked: () => any;
|
|
1196
1197
|
selected: () => any;
|
|
1197
1198
|
readonly: () => any;
|
|
1198
|
-
|
|
1199
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
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>;
|
|
1201
1202
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1202
1203
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1203
1204
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1235,7 +1236,6 @@ export declare const InlineListLocator: {
|
|
|
1235
1236
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1236
1237
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1237
1238
|
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>;
|
|
@@ -1285,24 +1285,28 @@ export declare const InlineListLocator: {
|
|
|
1285
1285
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
1286
1286
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
1287
1287
|
} & {
|
|
1288
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
1289
|
+
highlight: boolean;
|
|
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;
|
|
1288
1299
|
visible: () => boolean;
|
|
1289
1300
|
value: () => string | null;
|
|
1290
1301
|
disabled: () => string | null;
|
|
1291
1302
|
role: () => string | null;
|
|
1292
|
-
id: () => string;
|
|
1293
1303
|
label: () => string | null | undefined;
|
|
1294
|
-
title: () => string | null | undefined;
|
|
1295
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
1296
|
-
highlight: boolean;
|
|
1297
|
-
} | undefined) => string;
|
|
1298
1304
|
getId: () => string;
|
|
1299
1305
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1300
1306
|
getOwnerDocument: () => Document;
|
|
1301
1307
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1302
1308
|
getTagName: () => string;
|
|
1303
|
-
tagName: () => string;
|
|
1304
1309
|
typeIn: (text: string) => Promise<void>;
|
|
1305
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1306
1310
|
getDOMNode: () => Element;
|
|
1307
1311
|
node: () => Element;
|
|
1308
1312
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1310,9 +1314,8 @@ export declare const InlineListLocator: {
|
|
|
1310
1314
|
} | undefined) => void;
|
|
1311
1315
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
1312
1316
|
getTextContent: () => string | null;
|
|
1313
|
-
getParentNode: () =>
|
|
1314
|
-
parent: () =>
|
|
1315
|
-
getBoundingClientRect: () => DOMRect;
|
|
1317
|
+
getParentNode: () => ParentNode | null;
|
|
1318
|
+
parent: () => ParentNode | null;
|
|
1316
1319
|
rect: () => DOMRect;
|
|
1317
1320
|
hasClass: (classname: string) => boolean;
|
|
1318
1321
|
containsFocus: () => boolean;
|
|
@@ -1324,19 +1327,17 @@ export declare const InlineListLocator: {
|
|
|
1324
1327
|
exists: () => boolean;
|
|
1325
1328
|
text: () => string | null;
|
|
1326
1329
|
empty: () => boolean;
|
|
1327
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1328
1330
|
descendants: (selector: string) => Element[];
|
|
1329
|
-
ancestors: (selector: string) =>
|
|
1331
|
+
ancestors: (selector: string) => ParentNode[];
|
|
1330
1332
|
attribute: (qualifiedName: string) => string | null;
|
|
1331
1333
|
style: (property: string) => string;
|
|
1332
1334
|
classNames: () => string[];
|
|
1333
|
-
matches: (selector: string | undefined) => boolean;
|
|
1334
1335
|
checked: () => any;
|
|
1335
1336
|
selected: () => any;
|
|
1336
1337
|
readonly: () => any;
|
|
1337
|
-
|
|
1338
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
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>;
|
|
1340
1341
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1341
1342
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1342
1343
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1374,7 +1375,6 @@ export declare const InlineListLocator: {
|
|
|
1374
1375
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1375
1376
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1376
1377
|
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>;
|
|
@@ -1426,24 +1426,28 @@ export declare const InlineListLocator: {
|
|
|
1426
1426
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
1427
1427
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
1428
1428
|
} & {
|
|
1429
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
1430
|
+
highlight: boolean;
|
|
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;
|
|
1429
1440
|
visible: () => boolean;
|
|
1430
1441
|
value: () => string | null;
|
|
1431
1442
|
disabled: () => string | null;
|
|
1432
1443
|
role: () => string | null;
|
|
1433
|
-
id: () => string;
|
|
1434
1444
|
label: () => string | null | undefined;
|
|
1435
|
-
title: () => string | null | undefined;
|
|
1436
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
1437
|
-
highlight: boolean;
|
|
1438
|
-
} | undefined) => string;
|
|
1439
1445
|
getId: () => string;
|
|
1440
1446
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1441
1447
|
getOwnerDocument: () => Document;
|
|
1442
1448
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1443
1449
|
getTagName: () => string;
|
|
1444
|
-
tagName: () => string;
|
|
1445
1450
|
typeIn: (text: string) => Promise<void>;
|
|
1446
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1447
1451
|
getDOMNode: () => Element;
|
|
1448
1452
|
node: () => Element;
|
|
1449
1453
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1451,9 +1455,8 @@ export declare const InlineListLocator: {
|
|
|
1451
1455
|
} | undefined) => void;
|
|
1452
1456
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
1453
1457
|
getTextContent: () => string | null;
|
|
1454
|
-
getParentNode: () =>
|
|
1455
|
-
parent: () =>
|
|
1456
|
-
getBoundingClientRect: () => DOMRect;
|
|
1458
|
+
getParentNode: () => ParentNode | null;
|
|
1459
|
+
parent: () => ParentNode | null;
|
|
1457
1460
|
rect: () => DOMRect;
|
|
1458
1461
|
hasClass: (classname: string) => boolean;
|
|
1459
1462
|
containsFocus: () => boolean;
|
|
@@ -1465,19 +1468,17 @@ export declare const InlineListLocator: {
|
|
|
1465
1468
|
exists: () => boolean;
|
|
1466
1469
|
text: () => string | null;
|
|
1467
1470
|
empty: () => boolean;
|
|
1468
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1469
1471
|
descendants: (selector: string) => Element[];
|
|
1470
|
-
ancestors: (selector: string) =>
|
|
1472
|
+
ancestors: (selector: string) => ParentNode[];
|
|
1471
1473
|
attribute: (qualifiedName: string) => string | null;
|
|
1472
1474
|
style: (property: string) => string;
|
|
1473
1475
|
classNames: () => string[];
|
|
1474
|
-
matches: (selector: string | undefined) => boolean;
|
|
1475
1476
|
checked: () => any;
|
|
1476
1477
|
selected: () => any;
|
|
1477
1478
|
readonly: () => any;
|
|
1478
|
-
|
|
1479
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
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>;
|
|
1481
1482
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1482
1483
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1483
1484
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1515,7 +1516,6 @@ export declare const InlineListLocator: {
|
|
|
1515
1516
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1516
1517
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1517
1518
|
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>;
|
|
@@ -1568,24 +1568,28 @@ export declare const InlineListLocator: {
|
|
|
1568
1568
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
1569
1569
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
1570
1570
|
} & {
|
|
1571
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
1572
|
+
highlight: boolean;
|
|
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;
|
|
1571
1582
|
visible: () => boolean;
|
|
1572
1583
|
value: () => string | null;
|
|
1573
1584
|
disabled: () => string | null;
|
|
1574
1585
|
role: () => string | null;
|
|
1575
|
-
id: () => string;
|
|
1576
1586
|
label: () => string | null | undefined;
|
|
1577
|
-
title: () => string | null | undefined;
|
|
1578
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
1579
|
-
highlight: boolean;
|
|
1580
|
-
} | undefined) => string;
|
|
1581
1587
|
getId: () => string;
|
|
1582
1588
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1583
1589
|
getOwnerDocument: () => Document;
|
|
1584
1590
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1585
1591
|
getTagName: () => string;
|
|
1586
|
-
tagName: () => string;
|
|
1587
1592
|
typeIn: (text: string) => Promise<void>;
|
|
1588
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1589
1593
|
getDOMNode: () => Element;
|
|
1590
1594
|
node: () => Element;
|
|
1591
1595
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1593,9 +1597,8 @@ export declare const InlineListLocator: {
|
|
|
1593
1597
|
} | undefined) => void;
|
|
1594
1598
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
1595
1599
|
getTextContent: () => string | null;
|
|
1596
|
-
getParentNode: () =>
|
|
1597
|
-
parent: () =>
|
|
1598
|
-
getBoundingClientRect: () => DOMRect;
|
|
1600
|
+
getParentNode: () => ParentNode | null;
|
|
1601
|
+
parent: () => ParentNode | null;
|
|
1599
1602
|
rect: () => DOMRect;
|
|
1600
1603
|
hasClass: (classname: string) => boolean;
|
|
1601
1604
|
containsFocus: () => boolean;
|
|
@@ -1607,19 +1610,17 @@ export declare const InlineListLocator: {
|
|
|
1607
1610
|
exists: () => boolean;
|
|
1608
1611
|
text: () => string | null;
|
|
1609
1612
|
empty: () => boolean;
|
|
1610
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1611
1613
|
descendants: (selector: string) => Element[];
|
|
1612
|
-
ancestors: (selector: string) =>
|
|
1614
|
+
ancestors: (selector: string) => ParentNode[];
|
|
1613
1615
|
attribute: (qualifiedName: string) => string | null;
|
|
1614
1616
|
style: (property: string) => string;
|
|
1615
1617
|
classNames: () => string[];
|
|
1616
|
-
matches: (selector: string | undefined) => boolean;
|
|
1617
1618
|
checked: () => any;
|
|
1618
1619
|
selected: () => any;
|
|
1619
1620
|
readonly: () => any;
|
|
1620
|
-
|
|
1621
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
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>;
|
|
1623
1624
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1624
1625
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1625
1626
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1657,7 +1658,6 @@ export declare const InlineListLocator: {
|
|
|
1657
1658
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1658
1659
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1659
1660
|
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>;
|
|
@@ -1707,24 +1707,28 @@ export declare const InlineListLocator: {
|
|
|
1707
1707
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
1708
1708
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
1709
1709
|
} & {
|
|
1710
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
1711
|
+
highlight: boolean;
|
|
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;
|
|
1710
1721
|
visible: () => boolean;
|
|
1711
1722
|
value: () => string | null;
|
|
1712
1723
|
disabled: () => string | null;
|
|
1713
1724
|
role: () => string | null;
|
|
1714
|
-
id: () => string;
|
|
1715
1725
|
label: () => string | null | undefined;
|
|
1716
|
-
title: () => string | null | undefined;
|
|
1717
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
1718
|
-
highlight: boolean;
|
|
1719
|
-
} | undefined) => string;
|
|
1720
1726
|
getId: () => string;
|
|
1721
1727
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1722
1728
|
getOwnerDocument: () => Document;
|
|
1723
1729
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1724
1730
|
getTagName: () => string;
|
|
1725
|
-
tagName: () => string;
|
|
1726
1731
|
typeIn: (text: string) => Promise<void>;
|
|
1727
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1728
1732
|
getDOMNode: () => Element;
|
|
1729
1733
|
node: () => Element;
|
|
1730
1734
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1732,9 +1736,8 @@ export declare const InlineListLocator: {
|
|
|
1732
1736
|
} | undefined) => void;
|
|
1733
1737
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
1734
1738
|
getTextContent: () => string | null;
|
|
1735
|
-
getParentNode: () =>
|
|
1736
|
-
parent: () =>
|
|
1737
|
-
getBoundingClientRect: () => DOMRect;
|
|
1739
|
+
getParentNode: () => ParentNode | null;
|
|
1740
|
+
parent: () => ParentNode | null;
|
|
1738
1741
|
rect: () => DOMRect;
|
|
1739
1742
|
hasClass: (classname: string) => boolean;
|
|
1740
1743
|
containsFocus: () => boolean;
|
|
@@ -1746,19 +1749,17 @@ export declare const InlineListLocator: {
|
|
|
1746
1749
|
exists: () => boolean;
|
|
1747
1750
|
text: () => string | null;
|
|
1748
1751
|
empty: () => boolean;
|
|
1749
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1750
1752
|
descendants: (selector: string) => Element[];
|
|
1751
|
-
ancestors: (selector: string) =>
|
|
1753
|
+
ancestors: (selector: string) => ParentNode[];
|
|
1752
1754
|
attribute: (qualifiedName: string) => string | null;
|
|
1753
1755
|
style: (property: string) => string;
|
|
1754
1756
|
classNames: () => string[];
|
|
1755
|
-
matches: (selector: string | undefined) => boolean;
|
|
1756
1757
|
checked: () => any;
|
|
1757
1758
|
selected: () => any;
|
|
1758
1759
|
readonly: () => any;
|
|
1759
|
-
|
|
1760
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
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>;
|
|
1762
1763
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1763
1764
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1764
1765
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1796,7 +1797,6 @@ export declare const InlineListLocator: {
|
|
|
1796
1797
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1797
1798
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1798
1799
|
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>;
|
|
@@ -1848,24 +1848,28 @@ export declare const InlineListLocator: {
|
|
|
1848
1848
|
findParent: typeof import("@instructure/ui-test-queries/src/utils/queries").findParent;
|
|
1849
1849
|
findParents: typeof import("@instructure/ui-test-queries/src/utils/queries").findParents;
|
|
1850
1850
|
} & {
|
|
1851
|
+
toString: (maxLength?: number | undefined, options?: {
|
|
1852
|
+
highlight: boolean;
|
|
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;
|
|
1851
1862
|
visible: () => boolean;
|
|
1852
1863
|
value: () => string | null;
|
|
1853
1864
|
disabled: () => string | null;
|
|
1854
1865
|
role: () => string | null;
|
|
1855
|
-
id: () => string;
|
|
1856
1866
|
label: () => string | null | undefined;
|
|
1857
|
-
title: () => string | null | undefined;
|
|
1858
|
-
toString: (maxLength?: number | undefined, options?: {
|
|
1859
|
-
highlight: boolean;
|
|
1860
|
-
} | undefined) => string;
|
|
1861
1867
|
getId: () => string;
|
|
1862
1868
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1863
1869
|
getOwnerDocument: () => Document;
|
|
1864
1870
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1865
1871
|
getTagName: () => string;
|
|
1866
|
-
tagName: () => string;
|
|
1867
1872
|
typeIn: (text: string) => Promise<void>;
|
|
1868
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1869
1873
|
getDOMNode: () => Element;
|
|
1870
1874
|
node: () => Element;
|
|
1871
1875
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1873,9 +1877,8 @@ export declare const InlineListLocator: {
|
|
|
1873
1877
|
} | undefined) => void;
|
|
1874
1878
|
accessible: (options?: Record<string, unknown> | undefined) => Promise<boolean>;
|
|
1875
1879
|
getTextContent: () => string | null;
|
|
1876
|
-
getParentNode: () =>
|
|
1877
|
-
parent: () =>
|
|
1878
|
-
getBoundingClientRect: () => DOMRect;
|
|
1880
|
+
getParentNode: () => ParentNode | null;
|
|
1881
|
+
parent: () => ParentNode | null;
|
|
1879
1882
|
rect: () => DOMRect;
|
|
1880
1883
|
hasClass: (classname: string) => boolean;
|
|
1881
1884
|
containsFocus: () => boolean;
|
|
@@ -1887,19 +1890,17 @@ export declare const InlineListLocator: {
|
|
|
1887
1890
|
exists: () => boolean;
|
|
1888
1891
|
text: () => string | null;
|
|
1889
1892
|
empty: () => boolean;
|
|
1890
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1891
1893
|
descendants: (selector: string) => Element[];
|
|
1892
|
-
ancestors: (selector: string) =>
|
|
1894
|
+
ancestors: (selector: string) => ParentNode[];
|
|
1893
1895
|
attribute: (qualifiedName: string) => string | null;
|
|
1894
1896
|
style: (property: string) => string;
|
|
1895
1897
|
classNames: () => string[];
|
|
1896
|
-
matches: (selector: string | undefined) => boolean;
|
|
1897
1898
|
checked: () => any;
|
|
1898
1899
|
selected: () => any;
|
|
1899
1900
|
readonly: () => any;
|
|
1900
|
-
|
|
1901
|
-
parents: (selector: string) => (Node & ParentNode)[];
|
|
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>;
|
|
1903
1904
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1904
1905
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1905
1906
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1937,7 +1938,6 @@ export declare const InlineListLocator: {
|
|
|
1937
1938
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1938
1939
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1939
1940
|
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>;
|