@instructure/ui-select 8.13.1-snapshot.2 → 8.13.1-snapshot.27
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/es/Select/Group/index.js +2 -3
- package/es/Select/Group/props.js +0 -7
- package/es/Select/Option/index.js +2 -2
- package/es/Select/Option/props.js +0 -27
- package/es/Select/SelectLocator.js +5 -2
- package/es/Select/index.js +92 -85
- package/es/Select/props.js +2 -142
- package/lib/Select/Group/index.js +2 -3
- package/lib/Select/Group/props.js +0 -7
- package/lib/Select/Option/index.js +2 -2
- package/lib/Select/Option/props.js +0 -27
- package/lib/Select/SelectLocator.js +3 -0
- package/lib/Select/index.js +96 -86
- package/lib/Select/props.js +2 -142
- package/package.json +23 -23
- package/src/Select/Group/index.tsx +2 -3
- package/src/Select/Group/props.ts +8 -8
- package/src/Select/Option/index.tsx +2 -2
- package/src/Select/Option/props.ts +33 -25
- package/src/Select/index.tsx +160 -168
- package/src/Select/props.ts +176 -117
- package/tsconfig.build.json +27 -2
- package/tsconfig.build.tsbuildinfo +1 -0
- package/types/Select/Group/index.d.ts +4 -5
- package/types/Select/Group/index.d.ts.map +1 -1
- package/types/Select/Group/props.d.ts +7 -1
- package/types/Select/Group/props.d.ts.map +1 -1
- package/types/Select/Option/index.d.ts +3 -7
- package/types/Select/Option/index.d.ts.map +1 -1
- package/types/Select/Option/props.d.ts +28 -4
- package/types/Select/Option/props.d.ts.map +1 -1
- package/types/Select/SelectLocator.d.ts +117 -117
- package/types/Select/index.d.ts +68 -99
- package/types/Select/index.d.ts.map +1 -1
- package/types/Select/props.d.ts +146 -21
- package/types/Select/props.d.ts.map +1 -1
|
@@ -16,25 +16,15 @@ export declare const SelectLocator: {
|
|
|
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 SelectLocator: {
|
|
|
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 SelectLocator: {
|
|
|
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 SelectLocator: {
|
|
|
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>;
|
|
@@ -163,25 +163,15 @@ export declare const SelectLocator: {
|
|
|
163
163
|
toString: (maxLength?: number | undefined, options?: {
|
|
164
164
|
highlight: boolean;
|
|
165
165
|
} | undefined) => string;
|
|
166
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
167
|
-
children: (selector: string) => Element[];
|
|
168
|
-
title: () => string | null | undefined;
|
|
169
|
-
id: () => string;
|
|
170
|
-
tagName: () => string;
|
|
171
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
172
|
-
getBoundingClientRect: () => DOMRect;
|
|
173
|
-
matches: (selector: string | undefined) => boolean;
|
|
174
166
|
visible: () => boolean;
|
|
175
|
-
value: () => string | null;
|
|
176
|
-
disabled: () => string | null;
|
|
177
|
-
role: () => string | null;
|
|
178
|
-
label: () => string | null | undefined;
|
|
179
167
|
getId: () => string;
|
|
180
168
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
181
169
|
getOwnerDocument: () => Document;
|
|
182
170
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
183
171
|
getTagName: () => string;
|
|
172
|
+
tagName: () => string;
|
|
184
173
|
typeIn: (text: string) => Promise<void>;
|
|
174
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
185
175
|
getDOMNode: () => Element;
|
|
186
176
|
node: () => Element;
|
|
187
177
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -191,6 +181,7 @@ export declare const SelectLocator: {
|
|
|
191
181
|
getTextContent: () => string | null;
|
|
192
182
|
getParentNode: () => ParentNode | null;
|
|
193
183
|
parent: () => ParentNode | null;
|
|
184
|
+
getBoundingClientRect: () => DOMRect;
|
|
194
185
|
rect: () => DOMRect;
|
|
195
186
|
hasClass: (classname: string) => boolean;
|
|
196
187
|
containsFocus: () => boolean;
|
|
@@ -202,17 +193,25 @@ export declare const SelectLocator: {
|
|
|
202
193
|
exists: () => boolean;
|
|
203
194
|
text: () => string | null;
|
|
204
195
|
empty: () => boolean;
|
|
196
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
205
197
|
descendants: (selector: string) => Element[];
|
|
206
198
|
ancestors: (selector: string) => ParentNode[];
|
|
207
199
|
attribute: (qualifiedName: string) => string | null;
|
|
208
200
|
style: (property: string) => string;
|
|
209
201
|
classNames: () => string[];
|
|
202
|
+
id: () => string;
|
|
203
|
+
matches: (selector: string | undefined) => boolean;
|
|
210
204
|
checked: () => any;
|
|
211
205
|
selected: () => any;
|
|
206
|
+
disabled: () => string | null;
|
|
212
207
|
readonly: () => any;
|
|
208
|
+
role: () => string | null;
|
|
209
|
+
value: () => string | null;
|
|
210
|
+
label: () => string | null | undefined;
|
|
211
|
+
title: () => string | null | undefined;
|
|
212
|
+
children: (selector: string) => Element[];
|
|
213
213
|
parents: (selector: string) => ParentNode[];
|
|
214
214
|
} & {
|
|
215
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
216
215
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
217
216
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
218
217
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -250,6 +249,7 @@ export declare const SelectLocator: {
|
|
|
250
249
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
251
250
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
252
251
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
252
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
253
253
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
254
254
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
255
255
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -302,25 +302,15 @@ export declare const SelectLocator: {
|
|
|
302
302
|
toString: (maxLength?: number | undefined, options?: {
|
|
303
303
|
highlight: boolean;
|
|
304
304
|
} | undefined) => string;
|
|
305
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
306
|
-
children: (selector: string) => Element[];
|
|
307
|
-
title: () => string | null | undefined;
|
|
308
|
-
id: () => string;
|
|
309
|
-
tagName: () => string;
|
|
310
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
311
|
-
getBoundingClientRect: () => DOMRect;
|
|
312
|
-
matches: (selector: string | undefined) => boolean;
|
|
313
305
|
visible: () => boolean;
|
|
314
|
-
value: () => string | null;
|
|
315
|
-
disabled: () => string | null;
|
|
316
|
-
role: () => string | null;
|
|
317
|
-
label: () => string | null | undefined;
|
|
318
306
|
getId: () => string;
|
|
319
307
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
320
308
|
getOwnerDocument: () => Document;
|
|
321
309
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
322
310
|
getTagName: () => string;
|
|
311
|
+
tagName: () => string;
|
|
323
312
|
typeIn: (text: string) => Promise<void>;
|
|
313
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
324
314
|
getDOMNode: () => Element;
|
|
325
315
|
node: () => Element;
|
|
326
316
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -330,6 +320,7 @@ export declare const SelectLocator: {
|
|
|
330
320
|
getTextContent: () => string | null;
|
|
331
321
|
getParentNode: () => ParentNode | null;
|
|
332
322
|
parent: () => ParentNode | null;
|
|
323
|
+
getBoundingClientRect: () => DOMRect;
|
|
333
324
|
rect: () => DOMRect;
|
|
334
325
|
hasClass: (classname: string) => boolean;
|
|
335
326
|
containsFocus: () => boolean;
|
|
@@ -341,17 +332,25 @@ export declare const SelectLocator: {
|
|
|
341
332
|
exists: () => boolean;
|
|
342
333
|
text: () => string | null;
|
|
343
334
|
empty: () => boolean;
|
|
335
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
344
336
|
descendants: (selector: string) => Element[];
|
|
345
337
|
ancestors: (selector: string) => ParentNode[];
|
|
346
338
|
attribute: (qualifiedName: string) => string | null;
|
|
347
339
|
style: (property: string) => string;
|
|
348
340
|
classNames: () => string[];
|
|
341
|
+
id: () => string;
|
|
342
|
+
matches: (selector: string | undefined) => boolean;
|
|
349
343
|
checked: () => any;
|
|
350
344
|
selected: () => any;
|
|
345
|
+
disabled: () => string | null;
|
|
351
346
|
readonly: () => any;
|
|
347
|
+
role: () => string | null;
|
|
348
|
+
value: () => string | null;
|
|
349
|
+
label: () => string | null | undefined;
|
|
350
|
+
title: () => string | null | undefined;
|
|
351
|
+
children: (selector: string) => Element[];
|
|
352
352
|
parents: (selector: string) => ParentNode[];
|
|
353
353
|
} & {
|
|
354
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
355
354
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
356
355
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
357
356
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -389,6 +388,7 @@ export declare const SelectLocator: {
|
|
|
389
388
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
390
389
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
391
390
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
391
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
392
392
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
393
393
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
394
394
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -443,25 +443,15 @@ export declare const SelectLocator: {
|
|
|
443
443
|
toString: (maxLength?: number | undefined, options?: {
|
|
444
444
|
highlight: boolean;
|
|
445
445
|
} | undefined) => string;
|
|
446
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
447
|
-
children: (selector: string) => Element[];
|
|
448
|
-
title: () => string | null | undefined;
|
|
449
|
-
id: () => string;
|
|
450
|
-
tagName: () => string;
|
|
451
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
452
|
-
getBoundingClientRect: () => DOMRect;
|
|
453
|
-
matches: (selector: string | undefined) => boolean;
|
|
454
446
|
visible: () => boolean;
|
|
455
|
-
value: () => string | null;
|
|
456
|
-
disabled: () => string | null;
|
|
457
|
-
role: () => string | null;
|
|
458
|
-
label: () => string | null | undefined;
|
|
459
447
|
getId: () => string;
|
|
460
448
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
461
449
|
getOwnerDocument: () => Document;
|
|
462
450
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
463
451
|
getTagName: () => string;
|
|
452
|
+
tagName: () => string;
|
|
464
453
|
typeIn: (text: string) => Promise<void>;
|
|
454
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
465
455
|
getDOMNode: () => Element;
|
|
466
456
|
node: () => Element;
|
|
467
457
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -471,6 +461,7 @@ export declare const SelectLocator: {
|
|
|
471
461
|
getTextContent: () => string | null;
|
|
472
462
|
getParentNode: () => ParentNode | null;
|
|
473
463
|
parent: () => ParentNode | null;
|
|
464
|
+
getBoundingClientRect: () => DOMRect;
|
|
474
465
|
rect: () => DOMRect;
|
|
475
466
|
hasClass: (classname: string) => boolean;
|
|
476
467
|
containsFocus: () => boolean;
|
|
@@ -482,17 +473,25 @@ export declare const SelectLocator: {
|
|
|
482
473
|
exists: () => boolean;
|
|
483
474
|
text: () => string | null;
|
|
484
475
|
empty: () => boolean;
|
|
476
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
485
477
|
descendants: (selector: string) => Element[];
|
|
486
478
|
ancestors: (selector: string) => ParentNode[];
|
|
487
479
|
attribute: (qualifiedName: string) => string | null;
|
|
488
480
|
style: (property: string) => string;
|
|
489
481
|
classNames: () => string[];
|
|
482
|
+
id: () => string;
|
|
483
|
+
matches: (selector: string | undefined) => boolean;
|
|
490
484
|
checked: () => any;
|
|
491
485
|
selected: () => any;
|
|
486
|
+
disabled: () => string | null;
|
|
492
487
|
readonly: () => any;
|
|
488
|
+
role: () => string | null;
|
|
489
|
+
value: () => string | null;
|
|
490
|
+
label: () => string | null | undefined;
|
|
491
|
+
title: () => string | null | undefined;
|
|
492
|
+
children: (selector: string) => Element[];
|
|
493
493
|
parents: (selector: string) => ParentNode[];
|
|
494
494
|
} & {
|
|
495
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
496
495
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
497
496
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
498
497
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -530,6 +529,7 @@ export declare const SelectLocator: {
|
|
|
530
529
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
531
530
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
532
531
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
532
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
533
533
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
534
534
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
535
535
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -582,25 +582,15 @@ export declare const SelectLocator: {
|
|
|
582
582
|
toString: (maxLength?: number | undefined, options?: {
|
|
583
583
|
highlight: boolean;
|
|
584
584
|
} | undefined) => string;
|
|
585
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
586
|
-
children: (selector: string) => Element[];
|
|
587
|
-
title: () => string | null | undefined;
|
|
588
|
-
id: () => string;
|
|
589
|
-
tagName: () => string;
|
|
590
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
591
|
-
getBoundingClientRect: () => DOMRect;
|
|
592
|
-
matches: (selector: string | undefined) => boolean;
|
|
593
585
|
visible: () => boolean;
|
|
594
|
-
value: () => string | null;
|
|
595
|
-
disabled: () => string | null;
|
|
596
|
-
role: () => string | null;
|
|
597
|
-
label: () => string | null | undefined;
|
|
598
586
|
getId: () => string;
|
|
599
587
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
600
588
|
getOwnerDocument: () => Document;
|
|
601
589
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
602
590
|
getTagName: () => string;
|
|
591
|
+
tagName: () => string;
|
|
603
592
|
typeIn: (text: string) => Promise<void>;
|
|
593
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
604
594
|
getDOMNode: () => Element;
|
|
605
595
|
node: () => Element;
|
|
606
596
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -610,6 +600,7 @@ export declare const SelectLocator: {
|
|
|
610
600
|
getTextContent: () => string | null;
|
|
611
601
|
getParentNode: () => ParentNode | null;
|
|
612
602
|
parent: () => ParentNode | null;
|
|
603
|
+
getBoundingClientRect: () => DOMRect;
|
|
613
604
|
rect: () => DOMRect;
|
|
614
605
|
hasClass: (classname: string) => boolean;
|
|
615
606
|
containsFocus: () => boolean;
|
|
@@ -621,17 +612,25 @@ export declare const SelectLocator: {
|
|
|
621
612
|
exists: () => boolean;
|
|
622
613
|
text: () => string | null;
|
|
623
614
|
empty: () => boolean;
|
|
615
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
624
616
|
descendants: (selector: string) => Element[];
|
|
625
617
|
ancestors: (selector: string) => ParentNode[];
|
|
626
618
|
attribute: (qualifiedName: string) => string | null;
|
|
627
619
|
style: (property: string) => string;
|
|
628
620
|
classNames: () => string[];
|
|
621
|
+
id: () => string;
|
|
622
|
+
matches: (selector: string | undefined) => boolean;
|
|
629
623
|
checked: () => any;
|
|
630
624
|
selected: () => any;
|
|
625
|
+
disabled: () => string | null;
|
|
631
626
|
readonly: () => any;
|
|
627
|
+
role: () => string | null;
|
|
628
|
+
value: () => string | null;
|
|
629
|
+
label: () => string | null | undefined;
|
|
630
|
+
title: () => string | null | undefined;
|
|
631
|
+
children: (selector: string) => Element[];
|
|
632
632
|
parents: (selector: string) => ParentNode[];
|
|
633
633
|
} & {
|
|
634
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
635
634
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
636
635
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
637
636
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -669,6 +668,7 @@ export declare const SelectLocator: {
|
|
|
669
668
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
670
669
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
671
670
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
671
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
672
672
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
673
673
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
674
674
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -723,25 +723,15 @@ export declare const SelectLocator: {
|
|
|
723
723
|
toString: (maxLength?: number | undefined, options?: {
|
|
724
724
|
highlight: boolean;
|
|
725
725
|
} | undefined) => string;
|
|
726
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
727
|
-
children: (selector: string) => Element[];
|
|
728
|
-
title: () => string | null | undefined;
|
|
729
|
-
id: () => string;
|
|
730
|
-
tagName: () => string;
|
|
731
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
732
|
-
getBoundingClientRect: () => DOMRect;
|
|
733
|
-
matches: (selector: string | undefined) => boolean;
|
|
734
726
|
visible: () => boolean;
|
|
735
|
-
value: () => string | null;
|
|
736
|
-
disabled: () => string | null;
|
|
737
|
-
role: () => string | null;
|
|
738
|
-
label: () => string | null | undefined;
|
|
739
727
|
getId: () => string;
|
|
740
728
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
741
729
|
getOwnerDocument: () => Document;
|
|
742
730
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
743
731
|
getTagName: () => string;
|
|
732
|
+
tagName: () => string;
|
|
744
733
|
typeIn: (text: string) => Promise<void>;
|
|
734
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
745
735
|
getDOMNode: () => Element;
|
|
746
736
|
node: () => Element;
|
|
747
737
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -751,6 +741,7 @@ export declare const SelectLocator: {
|
|
|
751
741
|
getTextContent: () => string | null;
|
|
752
742
|
getParentNode: () => ParentNode | null;
|
|
753
743
|
parent: () => ParentNode | null;
|
|
744
|
+
getBoundingClientRect: () => DOMRect;
|
|
754
745
|
rect: () => DOMRect;
|
|
755
746
|
hasClass: (classname: string) => boolean;
|
|
756
747
|
containsFocus: () => boolean;
|
|
@@ -762,17 +753,25 @@ export declare const SelectLocator: {
|
|
|
762
753
|
exists: () => boolean;
|
|
763
754
|
text: () => string | null;
|
|
764
755
|
empty: () => boolean;
|
|
756
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
765
757
|
descendants: (selector: string) => Element[];
|
|
766
758
|
ancestors: (selector: string) => ParentNode[];
|
|
767
759
|
attribute: (qualifiedName: string) => string | null;
|
|
768
760
|
style: (property: string) => string;
|
|
769
761
|
classNames: () => string[];
|
|
762
|
+
id: () => string;
|
|
763
|
+
matches: (selector: string | undefined) => boolean;
|
|
770
764
|
checked: () => any;
|
|
771
765
|
selected: () => any;
|
|
766
|
+
disabled: () => string | null;
|
|
772
767
|
readonly: () => any;
|
|
768
|
+
role: () => string | null;
|
|
769
|
+
value: () => string | null;
|
|
770
|
+
label: () => string | null | undefined;
|
|
771
|
+
title: () => string | null | undefined;
|
|
772
|
+
children: (selector: string) => Element[];
|
|
773
773
|
parents: (selector: string) => ParentNode[];
|
|
774
774
|
} & {
|
|
775
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
776
775
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
777
776
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
778
777
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -810,6 +809,7 @@ export declare const SelectLocator: {
|
|
|
810
809
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
811
810
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
812
811
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
812
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
813
813
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
814
814
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
815
815
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -862,25 +862,15 @@ export declare const SelectLocator: {
|
|
|
862
862
|
toString: (maxLength?: number | undefined, options?: {
|
|
863
863
|
highlight: boolean;
|
|
864
864
|
} | undefined) => string;
|
|
865
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
866
|
-
children: (selector: string) => Element[];
|
|
867
|
-
title: () => string | null | undefined;
|
|
868
|
-
id: () => string;
|
|
869
|
-
tagName: () => string;
|
|
870
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
871
|
-
getBoundingClientRect: () => DOMRect;
|
|
872
|
-
matches: (selector: string | undefined) => boolean;
|
|
873
865
|
visible: () => boolean;
|
|
874
|
-
value: () => string | null;
|
|
875
|
-
disabled: () => string | null;
|
|
876
|
-
role: () => string | null;
|
|
877
|
-
label: () => string | null | undefined;
|
|
878
866
|
getId: () => string;
|
|
879
867
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
880
868
|
getOwnerDocument: () => Document;
|
|
881
869
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
882
870
|
getTagName: () => string;
|
|
871
|
+
tagName: () => string;
|
|
883
872
|
typeIn: (text: string) => Promise<void>;
|
|
873
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
884
874
|
getDOMNode: () => Element;
|
|
885
875
|
node: () => Element;
|
|
886
876
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -890,6 +880,7 @@ export declare const SelectLocator: {
|
|
|
890
880
|
getTextContent: () => string | null;
|
|
891
881
|
getParentNode: () => ParentNode | null;
|
|
892
882
|
parent: () => ParentNode | null;
|
|
883
|
+
getBoundingClientRect: () => DOMRect;
|
|
893
884
|
rect: () => DOMRect;
|
|
894
885
|
hasClass: (classname: string) => boolean;
|
|
895
886
|
containsFocus: () => boolean;
|
|
@@ -901,17 +892,25 @@ export declare const SelectLocator: {
|
|
|
901
892
|
exists: () => boolean;
|
|
902
893
|
text: () => string | null;
|
|
903
894
|
empty: () => boolean;
|
|
895
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
904
896
|
descendants: (selector: string) => Element[];
|
|
905
897
|
ancestors: (selector: string) => ParentNode[];
|
|
906
898
|
attribute: (qualifiedName: string) => string | null;
|
|
907
899
|
style: (property: string) => string;
|
|
908
900
|
classNames: () => string[];
|
|
901
|
+
id: () => string;
|
|
902
|
+
matches: (selector: string | undefined) => boolean;
|
|
909
903
|
checked: () => any;
|
|
910
904
|
selected: () => any;
|
|
905
|
+
disabled: () => string | null;
|
|
911
906
|
readonly: () => any;
|
|
907
|
+
role: () => string | null;
|
|
908
|
+
value: () => string | null;
|
|
909
|
+
label: () => string | null | undefined;
|
|
910
|
+
title: () => string | null | undefined;
|
|
911
|
+
children: (selector: string) => Element[];
|
|
912
912
|
parents: (selector: string) => ParentNode[];
|
|
913
913
|
} & {
|
|
914
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
915
914
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
916
915
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
917
916
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -949,6 +948,7 @@ export declare const SelectLocator: {
|
|
|
949
948
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
950
949
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
951
950
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
951
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
952
952
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
953
953
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
954
954
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1003,25 +1003,15 @@ export declare const SelectLocator: {
|
|
|
1003
1003
|
toString: (maxLength?: number | undefined, options?: {
|
|
1004
1004
|
highlight: boolean;
|
|
1005
1005
|
} | undefined) => string;
|
|
1006
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1007
|
-
children: (selector: string) => Element[];
|
|
1008
|
-
title: () => string | null | undefined;
|
|
1009
|
-
id: () => string;
|
|
1010
|
-
tagName: () => string;
|
|
1011
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1012
|
-
getBoundingClientRect: () => DOMRect;
|
|
1013
|
-
matches: (selector: string | undefined) => boolean;
|
|
1014
1006
|
visible: () => boolean;
|
|
1015
|
-
value: () => string | null;
|
|
1016
|
-
disabled: () => string | null;
|
|
1017
|
-
role: () => string | null;
|
|
1018
|
-
label: () => string | null | undefined;
|
|
1019
1007
|
getId: () => string;
|
|
1020
1008
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1021
1009
|
getOwnerDocument: () => Document;
|
|
1022
1010
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1023
1011
|
getTagName: () => string;
|
|
1012
|
+
tagName: () => string;
|
|
1024
1013
|
typeIn: (text: string) => Promise<void>;
|
|
1014
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1025
1015
|
getDOMNode: () => Element;
|
|
1026
1016
|
node: () => Element;
|
|
1027
1017
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1031,6 +1021,7 @@ export declare const SelectLocator: {
|
|
|
1031
1021
|
getTextContent: () => string | null;
|
|
1032
1022
|
getParentNode: () => ParentNode | null;
|
|
1033
1023
|
parent: () => ParentNode | null;
|
|
1024
|
+
getBoundingClientRect: () => DOMRect;
|
|
1034
1025
|
rect: () => DOMRect;
|
|
1035
1026
|
hasClass: (classname: string) => boolean;
|
|
1036
1027
|
containsFocus: () => boolean;
|
|
@@ -1042,17 +1033,25 @@ export declare const SelectLocator: {
|
|
|
1042
1033
|
exists: () => boolean;
|
|
1043
1034
|
text: () => string | null;
|
|
1044
1035
|
empty: () => boolean;
|
|
1036
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1045
1037
|
descendants: (selector: string) => Element[];
|
|
1046
1038
|
ancestors: (selector: string) => ParentNode[];
|
|
1047
1039
|
attribute: (qualifiedName: string) => string | null;
|
|
1048
1040
|
style: (property: string) => string;
|
|
1049
1041
|
classNames: () => string[];
|
|
1042
|
+
id: () => string;
|
|
1043
|
+
matches: (selector: string | undefined) => boolean;
|
|
1050
1044
|
checked: () => any;
|
|
1051
1045
|
selected: () => any;
|
|
1046
|
+
disabled: () => string | null;
|
|
1052
1047
|
readonly: () => any;
|
|
1048
|
+
role: () => string | null;
|
|
1049
|
+
value: () => string | null;
|
|
1050
|
+
label: () => string | null | undefined;
|
|
1051
|
+
title: () => string | null | undefined;
|
|
1052
|
+
children: (selector: string) => Element[];
|
|
1053
1053
|
parents: (selector: string) => ParentNode[];
|
|
1054
1054
|
} & {
|
|
1055
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1056
1055
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1057
1056
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1058
1057
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1090,6 +1089,7 @@ export declare const SelectLocator: {
|
|
|
1090
1089
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1091
1090
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1092
1091
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1092
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1093
1093
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1094
1094
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1095
1095
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1142,25 +1142,15 @@ export declare const SelectLocator: {
|
|
|
1142
1142
|
toString: (maxLength?: number | undefined, options?: {
|
|
1143
1143
|
highlight: boolean;
|
|
1144
1144
|
} | undefined) => string;
|
|
1145
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1146
|
-
children: (selector: string) => Element[];
|
|
1147
|
-
title: () => string | null | undefined;
|
|
1148
|
-
id: () => string;
|
|
1149
|
-
tagName: () => string;
|
|
1150
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1151
|
-
getBoundingClientRect: () => DOMRect;
|
|
1152
|
-
matches: (selector: string | undefined) => boolean;
|
|
1153
1145
|
visible: () => boolean;
|
|
1154
|
-
value: () => string | null;
|
|
1155
|
-
disabled: () => string | null;
|
|
1156
|
-
role: () => string | null;
|
|
1157
|
-
label: () => string | null | undefined;
|
|
1158
1146
|
getId: () => string;
|
|
1159
1147
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1160
1148
|
getOwnerDocument: () => Document;
|
|
1161
1149
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1162
1150
|
getTagName: () => string;
|
|
1151
|
+
tagName: () => string;
|
|
1163
1152
|
typeIn: (text: string) => Promise<void>;
|
|
1153
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1164
1154
|
getDOMNode: () => Element;
|
|
1165
1155
|
node: () => Element;
|
|
1166
1156
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1170,6 +1160,7 @@ export declare const SelectLocator: {
|
|
|
1170
1160
|
getTextContent: () => string | null;
|
|
1171
1161
|
getParentNode: () => ParentNode | null;
|
|
1172
1162
|
parent: () => ParentNode | null;
|
|
1163
|
+
getBoundingClientRect: () => DOMRect;
|
|
1173
1164
|
rect: () => DOMRect;
|
|
1174
1165
|
hasClass: (classname: string) => boolean;
|
|
1175
1166
|
containsFocus: () => boolean;
|
|
@@ -1181,17 +1172,25 @@ export declare const SelectLocator: {
|
|
|
1181
1172
|
exists: () => boolean;
|
|
1182
1173
|
text: () => string | null;
|
|
1183
1174
|
empty: () => boolean;
|
|
1175
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1184
1176
|
descendants: (selector: string) => Element[];
|
|
1185
1177
|
ancestors: (selector: string) => ParentNode[];
|
|
1186
1178
|
attribute: (qualifiedName: string) => string | null;
|
|
1187
1179
|
style: (property: string) => string;
|
|
1188
1180
|
classNames: () => string[];
|
|
1181
|
+
id: () => string;
|
|
1182
|
+
matches: (selector: string | undefined) => boolean;
|
|
1189
1183
|
checked: () => any;
|
|
1190
1184
|
selected: () => any;
|
|
1185
|
+
disabled: () => string | null;
|
|
1191
1186
|
readonly: () => any;
|
|
1187
|
+
role: () => string | null;
|
|
1188
|
+
value: () => string | null;
|
|
1189
|
+
label: () => string | null | undefined;
|
|
1190
|
+
title: () => string | null | undefined;
|
|
1191
|
+
children: (selector: string) => Element[];
|
|
1192
1192
|
parents: (selector: string) => ParentNode[];
|
|
1193
1193
|
} & {
|
|
1194
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1195
1194
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1196
1195
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1197
1196
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1229,6 +1228,7 @@ export declare const SelectLocator: {
|
|
|
1229
1228
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1230
1229
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1231
1230
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1231
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1232
1232
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1233
1233
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1234
1234
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|