@instructure/ui-text-area 8.13.1-snapshot.9 → 8.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/es/TextArea/TextAreaLocator.js +2 -1
- package/es/TextArea/index.js +27 -27
- package/es/TextArea/props.js +0 -66
- package/lib/TextArea/TextAreaLocator.js +1 -0
- package/lib/TextArea/index.js +27 -27
- package/lib/TextArea/props.js +0 -66
- package/package.json +17 -18
- package/src/TextArea/index.tsx +41 -77
- package/src/TextArea/props.ts +63 -59
- package/tsconfig.build.json +21 -2
- package/tsconfig.build.tsbuildinfo +1 -0
- package/types/TextArea/TextAreaLocator.d.ts +117 -117
- package/types/TextArea/index.d.ts +25 -21
- package/types/TextArea/index.d.ts.map +1 -1
- package/types/TextArea/props.d.ts +58 -6
- package/types/TextArea/props.d.ts.map +1 -1
- package/LICENSE.md +0 -27
|
@@ -16,25 +16,15 @@ export declare const TextAreaLocator: {
|
|
|
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 TextAreaLocator: {
|
|
|
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 TextAreaLocator: {
|
|
|
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 TextAreaLocator: {
|
|
|
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>;
|
|
@@ -162,25 +162,15 @@ export declare const TextAreaLocator: {
|
|
|
162
162
|
toString: (maxLength?: number | undefined, options?: {
|
|
163
163
|
highlight: boolean;
|
|
164
164
|
} | undefined) => string;
|
|
165
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
166
|
-
children: (selector: string) => Element[];
|
|
167
|
-
title: () => string | null | undefined;
|
|
168
|
-
id: () => string;
|
|
169
|
-
tagName: () => string;
|
|
170
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
171
|
-
getBoundingClientRect: () => DOMRect;
|
|
172
|
-
matches: (selector: string | undefined) => boolean;
|
|
173
165
|
visible: () => boolean;
|
|
174
|
-
value: () => string | null;
|
|
175
|
-
disabled: () => string | null;
|
|
176
|
-
role: () => string | null;
|
|
177
|
-
label: () => string | null | undefined;
|
|
178
166
|
getId: () => string;
|
|
179
167
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
180
168
|
getOwnerDocument: () => Document;
|
|
181
169
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
182
170
|
getTagName: () => string;
|
|
171
|
+
tagName: () => string;
|
|
183
172
|
typeIn: (text: string) => Promise<void>;
|
|
173
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
184
174
|
getDOMNode: () => Element;
|
|
185
175
|
node: () => Element;
|
|
186
176
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -190,6 +180,7 @@ export declare const TextAreaLocator: {
|
|
|
190
180
|
getTextContent: () => string | null;
|
|
191
181
|
getParentNode: () => ParentNode | null;
|
|
192
182
|
parent: () => ParentNode | null;
|
|
183
|
+
getBoundingClientRect: () => DOMRect;
|
|
193
184
|
rect: () => DOMRect;
|
|
194
185
|
hasClass: (classname: string) => boolean;
|
|
195
186
|
containsFocus: () => boolean;
|
|
@@ -201,17 +192,25 @@ export declare const TextAreaLocator: {
|
|
|
201
192
|
exists: () => boolean;
|
|
202
193
|
text: () => string | null;
|
|
203
194
|
empty: () => boolean;
|
|
195
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
204
196
|
descendants: (selector: string) => Element[];
|
|
205
197
|
ancestors: (selector: string) => ParentNode[];
|
|
206
198
|
attribute: (qualifiedName: string) => string | null;
|
|
207
199
|
style: (property: string) => string;
|
|
208
200
|
classNames: () => string[];
|
|
201
|
+
id: () => string;
|
|
202
|
+
matches: (selector: string | undefined) => boolean;
|
|
209
203
|
checked: () => any;
|
|
210
204
|
selected: () => any;
|
|
205
|
+
disabled: () => string | null;
|
|
211
206
|
readonly: () => any;
|
|
207
|
+
role: () => string | null;
|
|
208
|
+
value: () => string | null;
|
|
209
|
+
label: () => string | null | undefined;
|
|
210
|
+
title: () => string | null | undefined;
|
|
211
|
+
children: (selector: string) => Element[];
|
|
212
212
|
parents: (selector: string) => ParentNode[];
|
|
213
213
|
} & {
|
|
214
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
215
214
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
216
215
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
217
216
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -249,6 +248,7 @@ export declare const TextAreaLocator: {
|
|
|
249
248
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
250
249
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
251
250
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
251
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
252
252
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
253
253
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
254
254
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -301,25 +301,15 @@ export declare const TextAreaLocator: {
|
|
|
301
301
|
toString: (maxLength?: number | undefined, options?: {
|
|
302
302
|
highlight: boolean;
|
|
303
303
|
} | undefined) => string;
|
|
304
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
305
|
-
children: (selector: string) => Element[];
|
|
306
|
-
title: () => string | null | undefined;
|
|
307
|
-
id: () => string;
|
|
308
|
-
tagName: () => string;
|
|
309
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
310
|
-
getBoundingClientRect: () => DOMRect;
|
|
311
|
-
matches: (selector: string | undefined) => boolean;
|
|
312
304
|
visible: () => boolean;
|
|
313
|
-
value: () => string | null;
|
|
314
|
-
disabled: () => string | null;
|
|
315
|
-
role: () => string | null;
|
|
316
|
-
label: () => string | null | undefined;
|
|
317
305
|
getId: () => string;
|
|
318
306
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
319
307
|
getOwnerDocument: () => Document;
|
|
320
308
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
321
309
|
getTagName: () => string;
|
|
310
|
+
tagName: () => string;
|
|
322
311
|
typeIn: (text: string) => Promise<void>;
|
|
312
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
323
313
|
getDOMNode: () => Element;
|
|
324
314
|
node: () => Element;
|
|
325
315
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -329,6 +319,7 @@ export declare const TextAreaLocator: {
|
|
|
329
319
|
getTextContent: () => string | null;
|
|
330
320
|
getParentNode: () => ParentNode | null;
|
|
331
321
|
parent: () => ParentNode | null;
|
|
322
|
+
getBoundingClientRect: () => DOMRect;
|
|
332
323
|
rect: () => DOMRect;
|
|
333
324
|
hasClass: (classname: string) => boolean;
|
|
334
325
|
containsFocus: () => boolean;
|
|
@@ -340,17 +331,25 @@ export declare const TextAreaLocator: {
|
|
|
340
331
|
exists: () => boolean;
|
|
341
332
|
text: () => string | null;
|
|
342
333
|
empty: () => boolean;
|
|
334
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
343
335
|
descendants: (selector: string) => Element[];
|
|
344
336
|
ancestors: (selector: string) => ParentNode[];
|
|
345
337
|
attribute: (qualifiedName: string) => string | null;
|
|
346
338
|
style: (property: string) => string;
|
|
347
339
|
classNames: () => string[];
|
|
340
|
+
id: () => string;
|
|
341
|
+
matches: (selector: string | undefined) => boolean;
|
|
348
342
|
checked: () => any;
|
|
349
343
|
selected: () => any;
|
|
344
|
+
disabled: () => string | null;
|
|
350
345
|
readonly: () => any;
|
|
346
|
+
role: () => string | null;
|
|
347
|
+
value: () => string | null;
|
|
348
|
+
label: () => string | null | undefined;
|
|
349
|
+
title: () => string | null | undefined;
|
|
350
|
+
children: (selector: string) => Element[];
|
|
351
351
|
parents: (selector: string) => ParentNode[];
|
|
352
352
|
} & {
|
|
353
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
354
353
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
355
354
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
356
355
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -388,6 +387,7 @@ export declare const TextAreaLocator: {
|
|
|
388
387
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
389
388
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
390
389
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
390
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
391
391
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
392
392
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
393
393
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -441,25 +441,15 @@ export declare const TextAreaLocator: {
|
|
|
441
441
|
toString: (maxLength?: number | undefined, options?: {
|
|
442
442
|
highlight: boolean;
|
|
443
443
|
} | undefined) => string;
|
|
444
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
445
|
-
children: (selector: string) => Element[];
|
|
446
|
-
title: () => string | null | undefined;
|
|
447
|
-
id: () => string;
|
|
448
|
-
tagName: () => string;
|
|
449
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
450
|
-
getBoundingClientRect: () => DOMRect;
|
|
451
|
-
matches: (selector: string | undefined) => boolean;
|
|
452
444
|
visible: () => boolean;
|
|
453
|
-
value: () => string | null;
|
|
454
|
-
disabled: () => string | null;
|
|
455
|
-
role: () => string | null;
|
|
456
|
-
label: () => string | null | undefined;
|
|
457
445
|
getId: () => string;
|
|
458
446
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
459
447
|
getOwnerDocument: () => Document;
|
|
460
448
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
461
449
|
getTagName: () => string;
|
|
450
|
+
tagName: () => string;
|
|
462
451
|
typeIn: (text: string) => Promise<void>;
|
|
452
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
463
453
|
getDOMNode: () => Element;
|
|
464
454
|
node: () => Element;
|
|
465
455
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -469,6 +459,7 @@ export declare const TextAreaLocator: {
|
|
|
469
459
|
getTextContent: () => string | null;
|
|
470
460
|
getParentNode: () => ParentNode | null;
|
|
471
461
|
parent: () => ParentNode | null;
|
|
462
|
+
getBoundingClientRect: () => DOMRect;
|
|
472
463
|
rect: () => DOMRect;
|
|
473
464
|
hasClass: (classname: string) => boolean;
|
|
474
465
|
containsFocus: () => boolean;
|
|
@@ -480,17 +471,25 @@ export declare const TextAreaLocator: {
|
|
|
480
471
|
exists: () => boolean;
|
|
481
472
|
text: () => string | null;
|
|
482
473
|
empty: () => boolean;
|
|
474
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
483
475
|
descendants: (selector: string) => Element[];
|
|
484
476
|
ancestors: (selector: string) => ParentNode[];
|
|
485
477
|
attribute: (qualifiedName: string) => string | null;
|
|
486
478
|
style: (property: string) => string;
|
|
487
479
|
classNames: () => string[];
|
|
480
|
+
id: () => string;
|
|
481
|
+
matches: (selector: string | undefined) => boolean;
|
|
488
482
|
checked: () => any;
|
|
489
483
|
selected: () => any;
|
|
484
|
+
disabled: () => string | null;
|
|
490
485
|
readonly: () => any;
|
|
486
|
+
role: () => string | null;
|
|
487
|
+
value: () => string | null;
|
|
488
|
+
label: () => string | null | undefined;
|
|
489
|
+
title: () => string | null | undefined;
|
|
490
|
+
children: (selector: string) => Element[];
|
|
491
491
|
parents: (selector: string) => ParentNode[];
|
|
492
492
|
} & {
|
|
493
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
494
493
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
495
494
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
496
495
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -528,6 +527,7 @@ export declare const TextAreaLocator: {
|
|
|
528
527
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
529
528
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
530
529
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
530
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
531
531
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
532
532
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
533
533
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -580,25 +580,15 @@ export declare const TextAreaLocator: {
|
|
|
580
580
|
toString: (maxLength?: number | undefined, options?: {
|
|
581
581
|
highlight: boolean;
|
|
582
582
|
} | undefined) => string;
|
|
583
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
584
|
-
children: (selector: string) => Element[];
|
|
585
|
-
title: () => string | null | undefined;
|
|
586
|
-
id: () => string;
|
|
587
|
-
tagName: () => string;
|
|
588
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
589
|
-
getBoundingClientRect: () => DOMRect;
|
|
590
|
-
matches: (selector: string | undefined) => boolean;
|
|
591
583
|
visible: () => boolean;
|
|
592
|
-
value: () => string | null;
|
|
593
|
-
disabled: () => string | null;
|
|
594
|
-
role: () => string | null;
|
|
595
|
-
label: () => string | null | undefined;
|
|
596
584
|
getId: () => string;
|
|
597
585
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
598
586
|
getOwnerDocument: () => Document;
|
|
599
587
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
600
588
|
getTagName: () => string;
|
|
589
|
+
tagName: () => string;
|
|
601
590
|
typeIn: (text: string) => Promise<void>;
|
|
591
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
602
592
|
getDOMNode: () => Element;
|
|
603
593
|
node: () => Element;
|
|
604
594
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -608,6 +598,7 @@ export declare const TextAreaLocator: {
|
|
|
608
598
|
getTextContent: () => string | null;
|
|
609
599
|
getParentNode: () => ParentNode | null;
|
|
610
600
|
parent: () => ParentNode | null;
|
|
601
|
+
getBoundingClientRect: () => DOMRect;
|
|
611
602
|
rect: () => DOMRect;
|
|
612
603
|
hasClass: (classname: string) => boolean;
|
|
613
604
|
containsFocus: () => boolean;
|
|
@@ -619,17 +610,25 @@ export declare const TextAreaLocator: {
|
|
|
619
610
|
exists: () => boolean;
|
|
620
611
|
text: () => string | null;
|
|
621
612
|
empty: () => boolean;
|
|
613
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
622
614
|
descendants: (selector: string) => Element[];
|
|
623
615
|
ancestors: (selector: string) => ParentNode[];
|
|
624
616
|
attribute: (qualifiedName: string) => string | null;
|
|
625
617
|
style: (property: string) => string;
|
|
626
618
|
classNames: () => string[];
|
|
619
|
+
id: () => string;
|
|
620
|
+
matches: (selector: string | undefined) => boolean;
|
|
627
621
|
checked: () => any;
|
|
628
622
|
selected: () => any;
|
|
623
|
+
disabled: () => string | null;
|
|
629
624
|
readonly: () => any;
|
|
625
|
+
role: () => string | null;
|
|
626
|
+
value: () => string | null;
|
|
627
|
+
label: () => string | null | undefined;
|
|
628
|
+
title: () => string | null | undefined;
|
|
629
|
+
children: (selector: string) => Element[];
|
|
630
630
|
parents: (selector: string) => ParentNode[];
|
|
631
631
|
} & {
|
|
632
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
633
632
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
634
633
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
635
634
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -667,6 +666,7 @@ export declare const TextAreaLocator: {
|
|
|
667
666
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
668
667
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
669
668
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
669
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
670
670
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
671
671
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
672
672
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -720,25 +720,15 @@ export declare const TextAreaLocator: {
|
|
|
720
720
|
toString: (maxLength?: number | undefined, options?: {
|
|
721
721
|
highlight: boolean;
|
|
722
722
|
} | undefined) => string;
|
|
723
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
724
|
-
children: (selector: string) => Element[];
|
|
725
|
-
title: () => string | null | undefined;
|
|
726
|
-
id: () => string;
|
|
727
|
-
tagName: () => string;
|
|
728
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
729
|
-
getBoundingClientRect: () => DOMRect;
|
|
730
|
-
matches: (selector: string | undefined) => boolean;
|
|
731
723
|
visible: () => boolean;
|
|
732
|
-
value: () => string | null;
|
|
733
|
-
disabled: () => string | null;
|
|
734
|
-
role: () => string | null;
|
|
735
|
-
label: () => string | null | undefined;
|
|
736
724
|
getId: () => string;
|
|
737
725
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
738
726
|
getOwnerDocument: () => Document;
|
|
739
727
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
740
728
|
getTagName: () => string;
|
|
729
|
+
tagName: () => string;
|
|
741
730
|
typeIn: (text: string) => Promise<void>;
|
|
731
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
742
732
|
getDOMNode: () => Element;
|
|
743
733
|
node: () => Element;
|
|
744
734
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -748,6 +738,7 @@ export declare const TextAreaLocator: {
|
|
|
748
738
|
getTextContent: () => string | null;
|
|
749
739
|
getParentNode: () => ParentNode | null;
|
|
750
740
|
parent: () => ParentNode | null;
|
|
741
|
+
getBoundingClientRect: () => DOMRect;
|
|
751
742
|
rect: () => DOMRect;
|
|
752
743
|
hasClass: (classname: string) => boolean;
|
|
753
744
|
containsFocus: () => boolean;
|
|
@@ -759,17 +750,25 @@ export declare const TextAreaLocator: {
|
|
|
759
750
|
exists: () => boolean;
|
|
760
751
|
text: () => string | null;
|
|
761
752
|
empty: () => boolean;
|
|
753
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
762
754
|
descendants: (selector: string) => Element[];
|
|
763
755
|
ancestors: (selector: string) => ParentNode[];
|
|
764
756
|
attribute: (qualifiedName: string) => string | null;
|
|
765
757
|
style: (property: string) => string;
|
|
766
758
|
classNames: () => string[];
|
|
759
|
+
id: () => string;
|
|
760
|
+
matches: (selector: string | undefined) => boolean;
|
|
767
761
|
checked: () => any;
|
|
768
762
|
selected: () => any;
|
|
763
|
+
disabled: () => string | null;
|
|
769
764
|
readonly: () => any;
|
|
765
|
+
role: () => string | null;
|
|
766
|
+
value: () => string | null;
|
|
767
|
+
label: () => string | null | undefined;
|
|
768
|
+
title: () => string | null | undefined;
|
|
769
|
+
children: (selector: string) => Element[];
|
|
770
770
|
parents: (selector: string) => ParentNode[];
|
|
771
771
|
} & {
|
|
772
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
773
772
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
774
773
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
775
774
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -807,6 +806,7 @@ export declare const TextAreaLocator: {
|
|
|
807
806
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
808
807
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
809
808
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
809
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
810
810
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
811
811
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
812
812
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -859,25 +859,15 @@ export declare const TextAreaLocator: {
|
|
|
859
859
|
toString: (maxLength?: number | undefined, options?: {
|
|
860
860
|
highlight: boolean;
|
|
861
861
|
} | undefined) => string;
|
|
862
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
863
|
-
children: (selector: string) => Element[];
|
|
864
|
-
title: () => string | null | undefined;
|
|
865
|
-
id: () => string;
|
|
866
|
-
tagName: () => string;
|
|
867
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
868
|
-
getBoundingClientRect: () => DOMRect;
|
|
869
|
-
matches: (selector: string | undefined) => boolean;
|
|
870
862
|
visible: () => boolean;
|
|
871
|
-
value: () => string | null;
|
|
872
|
-
disabled: () => string | null;
|
|
873
|
-
role: () => string | null;
|
|
874
|
-
label: () => string | null | undefined;
|
|
875
863
|
getId: () => string;
|
|
876
864
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
877
865
|
getOwnerDocument: () => Document;
|
|
878
866
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
879
867
|
getTagName: () => string;
|
|
868
|
+
tagName: () => string;
|
|
880
869
|
typeIn: (text: string) => Promise<void>;
|
|
870
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
881
871
|
getDOMNode: () => Element;
|
|
882
872
|
node: () => Element;
|
|
883
873
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -887,6 +877,7 @@ export declare const TextAreaLocator: {
|
|
|
887
877
|
getTextContent: () => string | null;
|
|
888
878
|
getParentNode: () => ParentNode | null;
|
|
889
879
|
parent: () => ParentNode | null;
|
|
880
|
+
getBoundingClientRect: () => DOMRect;
|
|
890
881
|
rect: () => DOMRect;
|
|
891
882
|
hasClass: (classname: string) => boolean;
|
|
892
883
|
containsFocus: () => boolean;
|
|
@@ -898,17 +889,25 @@ export declare const TextAreaLocator: {
|
|
|
898
889
|
exists: () => boolean;
|
|
899
890
|
text: () => string | null;
|
|
900
891
|
empty: () => boolean;
|
|
892
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
901
893
|
descendants: (selector: string) => Element[];
|
|
902
894
|
ancestors: (selector: string) => ParentNode[];
|
|
903
895
|
attribute: (qualifiedName: string) => string | null;
|
|
904
896
|
style: (property: string) => string;
|
|
905
897
|
classNames: () => string[];
|
|
898
|
+
id: () => string;
|
|
899
|
+
matches: (selector: string | undefined) => boolean;
|
|
906
900
|
checked: () => any;
|
|
907
901
|
selected: () => any;
|
|
902
|
+
disabled: () => string | null;
|
|
908
903
|
readonly: () => any;
|
|
904
|
+
role: () => string | null;
|
|
905
|
+
value: () => string | null;
|
|
906
|
+
label: () => string | null | undefined;
|
|
907
|
+
title: () => string | null | undefined;
|
|
908
|
+
children: (selector: string) => Element[];
|
|
909
909
|
parents: (selector: string) => ParentNode[];
|
|
910
910
|
} & {
|
|
911
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
912
911
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
913
912
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
914
913
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -946,6 +945,7 @@ export declare const TextAreaLocator: {
|
|
|
946
945
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
947
946
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
948
947
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
948
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
949
949
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
950
950
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
951
951
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -999,25 +999,15 @@ export declare const TextAreaLocator: {
|
|
|
999
999
|
toString: (maxLength?: number | undefined, options?: {
|
|
1000
1000
|
highlight: boolean;
|
|
1001
1001
|
} | undefined) => string;
|
|
1002
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1003
|
-
children: (selector: string) => Element[];
|
|
1004
|
-
title: () => string | null | undefined;
|
|
1005
|
-
id: () => string;
|
|
1006
|
-
tagName: () => string;
|
|
1007
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1008
|
-
getBoundingClientRect: () => DOMRect;
|
|
1009
|
-
matches: (selector: string | undefined) => boolean;
|
|
1010
1002
|
visible: () => boolean;
|
|
1011
|
-
value: () => string | null;
|
|
1012
|
-
disabled: () => string | null;
|
|
1013
|
-
role: () => string | null;
|
|
1014
|
-
label: () => string | null | undefined;
|
|
1015
1003
|
getId: () => string;
|
|
1016
1004
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1017
1005
|
getOwnerDocument: () => Document;
|
|
1018
1006
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1019
1007
|
getTagName: () => string;
|
|
1008
|
+
tagName: () => string;
|
|
1020
1009
|
typeIn: (text: string) => Promise<void>;
|
|
1010
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1021
1011
|
getDOMNode: () => Element;
|
|
1022
1012
|
node: () => Element;
|
|
1023
1013
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1027,6 +1017,7 @@ export declare const TextAreaLocator: {
|
|
|
1027
1017
|
getTextContent: () => string | null;
|
|
1028
1018
|
getParentNode: () => ParentNode | null;
|
|
1029
1019
|
parent: () => ParentNode | null;
|
|
1020
|
+
getBoundingClientRect: () => DOMRect;
|
|
1030
1021
|
rect: () => DOMRect;
|
|
1031
1022
|
hasClass: (classname: string) => boolean;
|
|
1032
1023
|
containsFocus: () => boolean;
|
|
@@ -1038,17 +1029,25 @@ export declare const TextAreaLocator: {
|
|
|
1038
1029
|
exists: () => boolean;
|
|
1039
1030
|
text: () => string | null;
|
|
1040
1031
|
empty: () => boolean;
|
|
1032
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1041
1033
|
descendants: (selector: string) => Element[];
|
|
1042
1034
|
ancestors: (selector: string) => ParentNode[];
|
|
1043
1035
|
attribute: (qualifiedName: string) => string | null;
|
|
1044
1036
|
style: (property: string) => string;
|
|
1045
1037
|
classNames: () => string[];
|
|
1038
|
+
id: () => string;
|
|
1039
|
+
matches: (selector: string | undefined) => boolean;
|
|
1046
1040
|
checked: () => any;
|
|
1047
1041
|
selected: () => any;
|
|
1042
|
+
disabled: () => string | null;
|
|
1048
1043
|
readonly: () => any;
|
|
1044
|
+
role: () => string | null;
|
|
1045
|
+
value: () => string | null;
|
|
1046
|
+
label: () => string | null | undefined;
|
|
1047
|
+
title: () => string | null | undefined;
|
|
1048
|
+
children: (selector: string) => Element[];
|
|
1049
1049
|
parents: (selector: string) => ParentNode[];
|
|
1050
1050
|
} & {
|
|
1051
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1052
1051
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1053
1052
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1054
1053
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1086,6 +1085,7 @@ export declare const TextAreaLocator: {
|
|
|
1086
1085
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1087
1086
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1088
1087
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1088
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1089
1089
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1090
1090
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1091
1091
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1138,25 +1138,15 @@ export declare const TextAreaLocator: {
|
|
|
1138
1138
|
toString: (maxLength?: number | undefined, options?: {
|
|
1139
1139
|
highlight: boolean;
|
|
1140
1140
|
} | undefined) => string;
|
|
1141
|
-
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1142
|
-
children: (selector: string) => Element[];
|
|
1143
|
-
title: () => string | null | undefined;
|
|
1144
|
-
id: () => string;
|
|
1145
|
-
tagName: () => string;
|
|
1146
|
-
getAttribute: (qualifiedName: string) => string | null;
|
|
1147
|
-
getBoundingClientRect: () => DOMRect;
|
|
1148
|
-
matches: (selector: string | undefined) => boolean;
|
|
1149
1141
|
visible: () => boolean;
|
|
1150
|
-
value: () => string | null;
|
|
1151
|
-
disabled: () => string | null;
|
|
1152
|
-
role: () => string | null;
|
|
1153
|
-
label: () => string | null | undefined;
|
|
1154
1142
|
getId: () => string;
|
|
1155
1143
|
getOwnerWindow: () => (Window & typeof globalThis) | null;
|
|
1156
1144
|
getOwnerDocument: () => Document;
|
|
1157
1145
|
getComputedStyle: () => CSSStyleDeclaration;
|
|
1158
1146
|
getTagName: () => string;
|
|
1147
|
+
tagName: () => string;
|
|
1159
1148
|
typeIn: (text: string) => Promise<void>;
|
|
1149
|
+
getAttribute: (qualifiedName: string) => string | null;
|
|
1160
1150
|
getDOMNode: () => Element;
|
|
1161
1151
|
node: () => Element;
|
|
1162
1152
|
debug: (maxLength?: number | undefined, options?: {
|
|
@@ -1166,6 +1156,7 @@ export declare const TextAreaLocator: {
|
|
|
1166
1156
|
getTextContent: () => string | null;
|
|
1167
1157
|
getParentNode: () => ParentNode | null;
|
|
1168
1158
|
parent: () => ParentNode | null;
|
|
1159
|
+
getBoundingClientRect: () => DOMRect;
|
|
1169
1160
|
rect: () => DOMRect;
|
|
1170
1161
|
hasClass: (classname: string) => boolean;
|
|
1171
1162
|
containsFocus: () => boolean;
|
|
@@ -1177,17 +1168,25 @@ export declare const TextAreaLocator: {
|
|
|
1177
1168
|
exists: () => boolean;
|
|
1178
1169
|
text: () => string | null;
|
|
1179
1170
|
empty: () => boolean;
|
|
1171
|
+
contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
|
|
1180
1172
|
descendants: (selector: string) => Element[];
|
|
1181
1173
|
ancestors: (selector: string) => ParentNode[];
|
|
1182
1174
|
attribute: (qualifiedName: string) => string | null;
|
|
1183
1175
|
style: (property: string) => string;
|
|
1184
1176
|
classNames: () => string[];
|
|
1177
|
+
id: () => string;
|
|
1178
|
+
matches: (selector: string | undefined) => boolean;
|
|
1185
1179
|
checked: () => any;
|
|
1186
1180
|
selected: () => any;
|
|
1181
|
+
disabled: () => string | null;
|
|
1187
1182
|
readonly: () => any;
|
|
1183
|
+
role: () => string | null;
|
|
1184
|
+
value: () => string | null;
|
|
1185
|
+
label: () => string | null | undefined;
|
|
1186
|
+
title: () => string | null | undefined;
|
|
1187
|
+
children: (selector: string) => Element[];
|
|
1188
1188
|
parents: (selector: string) => ParentNode[];
|
|
1189
1189
|
} & {
|
|
1190
|
-
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1191
1190
|
copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1192
1191
|
cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1193
1192
|
paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
@@ -1225,6 +1224,7 @@ export declare const TextAreaLocator: {
|
|
|
1225
1224
|
touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1226
1225
|
touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1227
1226
|
touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1227
|
+
scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1228
1228
|
wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1229
1229
|
abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|
|
1230
1230
|
canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
|