@instructure/ui-navigation 8.13.1-snapshot.9 → 8.14.1-snapshot.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -18,25 +18,15 @@ export declare const NavigationLocator: {
18
18
  toString: (maxLength?: number | undefined, options?: {
19
19
  highlight: boolean;
20
20
  } | undefined) => string;
21
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
22
- children: (selector: string) => Element[];
23
- title: () => string | null | undefined;
24
- id: () => string;
25
- tagName: () => string;
26
- getAttribute: (qualifiedName: string) => string | null;
27
- getBoundingClientRect: () => DOMRect;
28
- matches: (selector: string | undefined) => boolean;
29
21
  visible: () => boolean;
30
- value: () => string | null;
31
- disabled: () => string | null;
32
- role: () => string | null;
33
- label: () => string | null | undefined;
34
22
  getId: () => string;
35
23
  getOwnerWindow: () => (Window & typeof globalThis) | null;
36
24
  getOwnerDocument: () => Document;
37
25
  getComputedStyle: () => CSSStyleDeclaration;
38
26
  getTagName: () => string;
27
+ tagName: () => string;
39
28
  typeIn: (text: string) => Promise<void>;
29
+ getAttribute: (qualifiedName: string) => string | null;
40
30
  getDOMNode: () => Element;
41
31
  node: () => Element;
42
32
  debug: (maxLength?: number | undefined, options?: {
@@ -46,6 +36,7 @@ export declare const NavigationLocator: {
46
36
  getTextContent: () => string | null;
47
37
  getParentNode: () => ParentNode | null;
48
38
  parent: () => ParentNode | null;
39
+ getBoundingClientRect: () => DOMRect;
49
40
  rect: () => DOMRect;
50
41
  hasClass: (classname: string) => boolean;
51
42
  containsFocus: () => boolean;
@@ -57,17 +48,25 @@ export declare const NavigationLocator: {
57
48
  exists: () => boolean;
58
49
  text: () => string | null;
59
50
  empty: () => boolean;
51
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
60
52
  descendants: (selector: string) => Element[];
61
53
  ancestors: (selector: string) => ParentNode[];
62
54
  attribute: (qualifiedName: string) => string | null;
63
55
  style: (property: string) => string;
64
56
  classNames: () => string[];
57
+ id: () => string;
58
+ matches: (selector: string | undefined) => boolean;
65
59
  checked: () => any;
66
60
  selected: () => any;
61
+ disabled: () => string | null;
67
62
  readonly: () => any;
63
+ role: () => string | null;
64
+ value: () => string | null;
65
+ label: () => string | null | undefined;
66
+ title: () => string | null | undefined;
67
+ children: (selector: string) => Element[];
68
68
  parents: (selector: string) => ParentNode[];
69
69
  } & {
70
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
71
70
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
72
71
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
73
72
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -105,6 +104,7 @@ export declare const NavigationLocator: {
105
104
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
106
105
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
107
106
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
107
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
108
108
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
109
109
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
110
110
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -159,25 +159,15 @@ export declare const NavigationLocator: {
159
159
  toString: (maxLength?: number | undefined, options?: {
160
160
  highlight: boolean;
161
161
  } | undefined) => string;
162
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
163
- children: (selector: string) => Element[];
164
- title: () => string | null | undefined;
165
- id: () => string;
166
- tagName: () => string;
167
- getAttribute: (qualifiedName: string) => string | null;
168
- getBoundingClientRect: () => DOMRect;
169
- matches: (selector: string | undefined) => boolean;
170
162
  visible: () => boolean;
171
- value: () => string | null;
172
- disabled: () => string | null;
173
- role: () => string | null;
174
- label: () => string | null | undefined;
175
163
  getId: () => string;
176
164
  getOwnerWindow: () => (Window & typeof globalThis) | null;
177
165
  getOwnerDocument: () => Document;
178
166
  getComputedStyle: () => CSSStyleDeclaration;
179
167
  getTagName: () => string;
168
+ tagName: () => string;
180
169
  typeIn: (text: string) => Promise<void>;
170
+ getAttribute: (qualifiedName: string) => string | null;
181
171
  getDOMNode: () => Element;
182
172
  node: () => Element;
183
173
  debug: (maxLength?: number | undefined, options?: {
@@ -187,6 +177,7 @@ export declare const NavigationLocator: {
187
177
  getTextContent: () => string | null;
188
178
  getParentNode: () => ParentNode | null;
189
179
  parent: () => ParentNode | null;
180
+ getBoundingClientRect: () => DOMRect;
190
181
  rect: () => DOMRect;
191
182
  hasClass: (classname: string) => boolean;
192
183
  containsFocus: () => boolean;
@@ -198,17 +189,25 @@ export declare const NavigationLocator: {
198
189
  exists: () => boolean;
199
190
  text: () => string | null;
200
191
  empty: () => boolean;
192
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
201
193
  descendants: (selector: string) => Element[];
202
194
  ancestors: (selector: string) => ParentNode[];
203
195
  attribute: (qualifiedName: string) => string | null;
204
196
  style: (property: string) => string;
205
197
  classNames: () => string[];
198
+ id: () => string;
199
+ matches: (selector: string | undefined) => boolean;
206
200
  checked: () => any;
207
201
  selected: () => any;
202
+ disabled: () => string | null;
208
203
  readonly: () => any;
204
+ role: () => string | null;
205
+ value: () => string | null;
206
+ label: () => string | null | undefined;
207
+ title: () => string | null | undefined;
208
+ children: (selector: string) => Element[];
209
209
  parents: (selector: string) => ParentNode[];
210
210
  } & {
211
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
212
211
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
213
212
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
214
213
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -246,6 +245,7 @@ export declare const NavigationLocator: {
246
245
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
247
246
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
248
247
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
248
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
249
249
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
250
250
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
251
251
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -307,25 +307,15 @@ export declare const NavigationLocator: {
307
307
  toString: (maxLength?: number | undefined, options?: {
308
308
  highlight: boolean;
309
309
  } | undefined) => string;
310
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
311
- children: (selector: string) => Element[];
312
- title: () => string | null | undefined;
313
- id: () => string;
314
- tagName: () => string;
315
- getAttribute: (qualifiedName: string) => string | null;
316
- getBoundingClientRect: () => DOMRect;
317
- matches: (selector: string | undefined) => boolean;
318
310
  visible: () => boolean;
319
- value: () => string | null;
320
- disabled: () => string | null;
321
- role: () => string | null;
322
- label: () => string | null | undefined;
323
311
  getId: () => string;
324
312
  getOwnerWindow: () => (Window & typeof globalThis) | null;
325
313
  getOwnerDocument: () => Document;
326
314
  getComputedStyle: () => CSSStyleDeclaration;
327
315
  getTagName: () => string;
316
+ tagName: () => string;
328
317
  typeIn: (text: string) => Promise<void>;
318
+ getAttribute: (qualifiedName: string) => string | null;
329
319
  getDOMNode: () => Element;
330
320
  node: () => Element;
331
321
  debug: (maxLength?: number | undefined, options?: {
@@ -335,6 +325,7 @@ export declare const NavigationLocator: {
335
325
  getTextContent: () => string | null;
336
326
  getParentNode: () => ParentNode | null;
337
327
  parent: () => ParentNode | null;
328
+ getBoundingClientRect: () => DOMRect;
338
329
  rect: () => DOMRect;
339
330
  hasClass: (classname: string) => boolean;
340
331
  containsFocus: () => boolean;
@@ -346,17 +337,25 @@ export declare const NavigationLocator: {
346
337
  exists: () => boolean;
347
338
  text: () => string | null;
348
339
  empty: () => boolean;
340
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
349
341
  descendants: (selector: string) => Element[];
350
342
  ancestors: (selector: string) => ParentNode[];
351
343
  attribute: (qualifiedName: string) => string | null;
352
344
  style: (property: string) => string;
353
345
  classNames: () => string[];
346
+ id: () => string;
347
+ matches: (selector: string | undefined) => boolean;
354
348
  checked: () => any;
355
349
  selected: () => any;
350
+ disabled: () => string | null;
356
351
  readonly: () => any;
352
+ role: () => string | null;
353
+ value: () => string | null;
354
+ label: () => string | null | undefined;
355
+ title: () => string | null | undefined;
356
+ children: (selector: string) => Element[];
357
357
  parents: (selector: string) => ParentNode[];
358
358
  } & {
359
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
360
359
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
361
360
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
362
361
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -394,6 +393,7 @@ export declare const NavigationLocator: {
394
393
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
395
394
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
396
395
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
396
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
397
397
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
398
398
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
399
399
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -446,25 +446,15 @@ export declare const NavigationLocator: {
446
446
  toString: (maxLength?: number | undefined, options?: {
447
447
  highlight: boolean;
448
448
  } | undefined) => string;
449
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
450
- children: (selector: string) => Element[];
451
- title: () => string | null | undefined;
452
- id: () => string;
453
- tagName: () => string;
454
- getAttribute: (qualifiedName: string) => string | null;
455
- getBoundingClientRect: () => DOMRect;
456
- matches: (selector: string | undefined) => boolean;
457
449
  visible: () => boolean;
458
- value: () => string | null;
459
- disabled: () => string | null;
460
- role: () => string | null;
461
- label: () => string | null | undefined;
462
450
  getId: () => string;
463
451
  getOwnerWindow: () => (Window & typeof globalThis) | null;
464
452
  getOwnerDocument: () => Document;
465
453
  getComputedStyle: () => CSSStyleDeclaration;
466
454
  getTagName: () => string;
455
+ tagName: () => string;
467
456
  typeIn: (text: string) => Promise<void>;
457
+ getAttribute: (qualifiedName: string) => string | null;
468
458
  getDOMNode: () => Element;
469
459
  node: () => Element;
470
460
  debug: (maxLength?: number | undefined, options?: {
@@ -474,6 +464,7 @@ export declare const NavigationLocator: {
474
464
  getTextContent: () => string | null;
475
465
  getParentNode: () => ParentNode | null;
476
466
  parent: () => ParentNode | null;
467
+ getBoundingClientRect: () => DOMRect;
477
468
  rect: () => DOMRect;
478
469
  hasClass: (classname: string) => boolean;
479
470
  containsFocus: () => boolean;
@@ -485,17 +476,25 @@ export declare const NavigationLocator: {
485
476
  exists: () => boolean;
486
477
  text: () => string | null;
487
478
  empty: () => boolean;
479
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
488
480
  descendants: (selector: string) => Element[];
489
481
  ancestors: (selector: string) => ParentNode[];
490
482
  attribute: (qualifiedName: string) => string | null;
491
483
  style: (property: string) => string;
492
484
  classNames: () => string[];
485
+ id: () => string;
486
+ matches: (selector: string | undefined) => boolean;
493
487
  checked: () => any;
494
488
  selected: () => any;
489
+ disabled: () => string | null;
495
490
  readonly: () => any;
491
+ role: () => string | null;
492
+ value: () => string | null;
493
+ label: () => string | null | undefined;
494
+ title: () => string | null | undefined;
495
+ children: (selector: string) => Element[];
496
496
  parents: (selector: string) => ParentNode[];
497
497
  } & {
498
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
499
498
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
500
499
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
501
500
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -533,6 +532,7 @@ export declare const NavigationLocator: {
533
532
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
534
533
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
535
534
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
535
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
536
536
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
537
537
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
538
538
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -587,25 +587,15 @@ export declare const NavigationLocator: {
587
587
  toString: (maxLength?: number | undefined, options?: {
588
588
  highlight: boolean;
589
589
  } | undefined) => string;
590
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
591
- children: (selector: string) => Element[];
592
- title: () => string | null | undefined;
593
- id: () => string;
594
- tagName: () => string;
595
- getAttribute: (qualifiedName: string) => string | null;
596
- getBoundingClientRect: () => DOMRect;
597
- matches: (selector: string | undefined) => boolean;
598
590
  visible: () => boolean;
599
- value: () => string | null;
600
- disabled: () => string | null;
601
- role: () => string | null;
602
- label: () => string | null | undefined;
603
591
  getId: () => string;
604
592
  getOwnerWindow: () => (Window & typeof globalThis) | null;
605
593
  getOwnerDocument: () => Document;
606
594
  getComputedStyle: () => CSSStyleDeclaration;
607
595
  getTagName: () => string;
596
+ tagName: () => string;
608
597
  typeIn: (text: string) => Promise<void>;
598
+ getAttribute: (qualifiedName: string) => string | null;
609
599
  getDOMNode: () => Element;
610
600
  node: () => Element;
611
601
  debug: (maxLength?: number | undefined, options?: {
@@ -615,6 +605,7 @@ export declare const NavigationLocator: {
615
605
  getTextContent: () => string | null;
616
606
  getParentNode: () => ParentNode | null;
617
607
  parent: () => ParentNode | null;
608
+ getBoundingClientRect: () => DOMRect;
618
609
  rect: () => DOMRect;
619
610
  hasClass: (classname: string) => boolean;
620
611
  containsFocus: () => boolean;
@@ -626,17 +617,25 @@ export declare const NavigationLocator: {
626
617
  exists: () => boolean;
627
618
  text: () => string | null;
628
619
  empty: () => boolean;
620
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
629
621
  descendants: (selector: string) => Element[];
630
622
  ancestors: (selector: string) => ParentNode[];
631
623
  attribute: (qualifiedName: string) => string | null;
632
624
  style: (property: string) => string;
633
625
  classNames: () => string[];
626
+ id: () => string;
627
+ matches: (selector: string | undefined) => boolean;
634
628
  checked: () => any;
635
629
  selected: () => any;
630
+ disabled: () => string | null;
636
631
  readonly: () => any;
632
+ role: () => string | null;
633
+ value: () => string | null;
634
+ label: () => string | null | undefined;
635
+ title: () => string | null | undefined;
636
+ children: (selector: string) => Element[];
637
637
  parents: (selector: string) => ParentNode[];
638
638
  } & {
639
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
640
639
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
641
640
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
642
641
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -674,6 +673,7 @@ export declare const NavigationLocator: {
674
673
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
675
674
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
676
675
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
676
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
677
677
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
678
678
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
679
679
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -729,25 +729,15 @@ export declare const NavigationLocator: {
729
729
  toString: (maxLength?: number | undefined, options?: {
730
730
  highlight: boolean;
731
731
  } | undefined) => string;
732
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
733
- children: (selector: string) => Element[];
734
- title: () => string | null | undefined;
735
- id: () => string;
736
- tagName: () => string;
737
- getAttribute: (qualifiedName: string) => string | null;
738
- getBoundingClientRect: () => DOMRect;
739
- matches: (selector: string | undefined) => boolean;
740
732
  visible: () => boolean;
741
- value: () => string | null;
742
- disabled: () => string | null;
743
- role: () => string | null;
744
- label: () => string | null | undefined;
745
733
  getId: () => string;
746
734
  getOwnerWindow: () => (Window & typeof globalThis) | null;
747
735
  getOwnerDocument: () => Document;
748
736
  getComputedStyle: () => CSSStyleDeclaration;
749
737
  getTagName: () => string;
738
+ tagName: () => string;
750
739
  typeIn: (text: string) => Promise<void>;
740
+ getAttribute: (qualifiedName: string) => string | null;
751
741
  getDOMNode: () => Element;
752
742
  node: () => Element;
753
743
  debug: (maxLength?: number | undefined, options?: {
@@ -757,6 +747,7 @@ export declare const NavigationLocator: {
757
747
  getTextContent: () => string | null;
758
748
  getParentNode: () => ParentNode | null;
759
749
  parent: () => ParentNode | null;
750
+ getBoundingClientRect: () => DOMRect;
760
751
  rect: () => DOMRect;
761
752
  hasClass: (classname: string) => boolean;
762
753
  containsFocus: () => boolean;
@@ -768,17 +759,25 @@ export declare const NavigationLocator: {
768
759
  exists: () => boolean;
769
760
  text: () => string | null;
770
761
  empty: () => boolean;
762
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
771
763
  descendants: (selector: string) => Element[];
772
764
  ancestors: (selector: string) => ParentNode[];
773
765
  attribute: (qualifiedName: string) => string | null;
774
766
  style: (property: string) => string;
775
767
  classNames: () => string[];
768
+ id: () => string;
769
+ matches: (selector: string | undefined) => boolean;
776
770
  checked: () => any;
777
771
  selected: () => any;
772
+ disabled: () => string | null;
778
773
  readonly: () => any;
774
+ role: () => string | null;
775
+ value: () => string | null;
776
+ label: () => string | null | undefined;
777
+ title: () => string | null | undefined;
778
+ children: (selector: string) => Element[];
779
779
  parents: (selector: string) => ParentNode[];
780
780
  } & {
781
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
782
781
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
783
782
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
784
783
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -816,6 +815,7 @@ export declare const NavigationLocator: {
816
815
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
817
816
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
818
817
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
818
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
819
819
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
820
820
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
821
821
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -868,25 +868,15 @@ export declare const NavigationLocator: {
868
868
  toString: (maxLength?: number | undefined, options?: {
869
869
  highlight: boolean;
870
870
  } | undefined) => string;
871
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
872
- children: (selector: string) => Element[];
873
- title: () => string | null | undefined;
874
- id: () => string;
875
- tagName: () => string;
876
- getAttribute: (qualifiedName: string) => string | null;
877
- getBoundingClientRect: () => DOMRect;
878
- matches: (selector: string | undefined) => boolean;
879
871
  visible: () => boolean;
880
- value: () => string | null;
881
- disabled: () => string | null;
882
- role: () => string | null;
883
- label: () => string | null | undefined;
884
872
  getId: () => string;
885
873
  getOwnerWindow: () => (Window & typeof globalThis) | null;
886
874
  getOwnerDocument: () => Document;
887
875
  getComputedStyle: () => CSSStyleDeclaration;
888
876
  getTagName: () => string;
877
+ tagName: () => string;
889
878
  typeIn: (text: string) => Promise<void>;
879
+ getAttribute: (qualifiedName: string) => string | null;
890
880
  getDOMNode: () => Element;
891
881
  node: () => Element;
892
882
  debug: (maxLength?: number | undefined, options?: {
@@ -896,6 +886,7 @@ export declare const NavigationLocator: {
896
886
  getTextContent: () => string | null;
897
887
  getParentNode: () => ParentNode | null;
898
888
  parent: () => ParentNode | null;
889
+ getBoundingClientRect: () => DOMRect;
899
890
  rect: () => DOMRect;
900
891
  hasClass: (classname: string) => boolean;
901
892
  containsFocus: () => boolean;
@@ -907,17 +898,25 @@ export declare const NavigationLocator: {
907
898
  exists: () => boolean;
908
899
  text: () => string | null;
909
900
  empty: () => boolean;
901
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
910
902
  descendants: (selector: string) => Element[];
911
903
  ancestors: (selector: string) => ParentNode[];
912
904
  attribute: (qualifiedName: string) => string | null;
913
905
  style: (property: string) => string;
914
906
  classNames: () => string[];
907
+ id: () => string;
908
+ matches: (selector: string | undefined) => boolean;
915
909
  checked: () => any;
916
910
  selected: () => any;
911
+ disabled: () => string | null;
917
912
  readonly: () => any;
913
+ role: () => string | null;
914
+ value: () => string | null;
915
+ label: () => string | null | undefined;
916
+ title: () => string | null | undefined;
917
+ children: (selector: string) => Element[];
918
918
  parents: (selector: string) => ParentNode[];
919
919
  } & {
920
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
921
920
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
922
921
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
923
922
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -955,6 +954,7 @@ export declare const NavigationLocator: {
955
954
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
956
955
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
957
956
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
957
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
958
958
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
959
959
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
960
960
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -1009,25 +1009,15 @@ export declare const NavigationLocator: {
1009
1009
  toString: (maxLength?: number | undefined, options?: {
1010
1010
  highlight: boolean;
1011
1011
  } | undefined) => string;
1012
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
1013
- children: (selector: string) => Element[];
1014
- title: () => string | null | undefined;
1015
- id: () => string;
1016
- tagName: () => string;
1017
- getAttribute: (qualifiedName: string) => string | null;
1018
- getBoundingClientRect: () => DOMRect;
1019
- matches: (selector: string | undefined) => boolean;
1020
1012
  visible: () => boolean;
1021
- value: () => string | null;
1022
- disabled: () => string | null;
1023
- role: () => string | null;
1024
- label: () => string | null | undefined;
1025
1013
  getId: () => string;
1026
1014
  getOwnerWindow: () => (Window & typeof globalThis) | null;
1027
1015
  getOwnerDocument: () => Document;
1028
1016
  getComputedStyle: () => CSSStyleDeclaration;
1029
1017
  getTagName: () => string;
1018
+ tagName: () => string;
1030
1019
  typeIn: (text: string) => Promise<void>;
1020
+ getAttribute: (qualifiedName: string) => string | null;
1031
1021
  getDOMNode: () => Element;
1032
1022
  node: () => Element;
1033
1023
  debug: (maxLength?: number | undefined, options?: {
@@ -1037,6 +1027,7 @@ export declare const NavigationLocator: {
1037
1027
  getTextContent: () => string | null;
1038
1028
  getParentNode: () => ParentNode | null;
1039
1029
  parent: () => ParentNode | null;
1030
+ getBoundingClientRect: () => DOMRect;
1040
1031
  rect: () => DOMRect;
1041
1032
  hasClass: (classname: string) => boolean;
1042
1033
  containsFocus: () => boolean;
@@ -1048,17 +1039,25 @@ export declare const NavigationLocator: {
1048
1039
  exists: () => boolean;
1049
1040
  text: () => string | null;
1050
1041
  empty: () => boolean;
1042
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
1051
1043
  descendants: (selector: string) => Element[];
1052
1044
  ancestors: (selector: string) => ParentNode[];
1053
1045
  attribute: (qualifiedName: string) => string | null;
1054
1046
  style: (property: string) => string;
1055
1047
  classNames: () => string[];
1048
+ id: () => string;
1049
+ matches: (selector: string | undefined) => boolean;
1056
1050
  checked: () => any;
1057
1051
  selected: () => any;
1052
+ disabled: () => string | null;
1058
1053
  readonly: () => any;
1054
+ role: () => string | null;
1055
+ value: () => string | null;
1056
+ label: () => string | null | undefined;
1057
+ title: () => string | null | undefined;
1058
+ children: (selector: string) => Element[];
1059
1059
  parents: (selector: string) => ParentNode[];
1060
1060
  } & {
1061
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1062
1061
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1063
1062
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1064
1063
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -1096,6 +1095,7 @@ export declare const NavigationLocator: {
1096
1095
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1097
1096
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1098
1097
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1098
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1099
1099
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1100
1100
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1101
1101
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -1151,25 +1151,15 @@ export declare const NavigationLocator: {
1151
1151
  toString: (maxLength?: number | undefined, options?: {
1152
1152
  highlight: boolean;
1153
1153
  } | undefined) => string;
1154
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
1155
- children: (selector: string) => Element[];
1156
- title: () => string | null | undefined;
1157
- id: () => string;
1158
- tagName: () => string;
1159
- getAttribute: (qualifiedName: string) => string | null;
1160
- getBoundingClientRect: () => DOMRect;
1161
- matches: (selector: string | undefined) => boolean;
1162
1154
  visible: () => boolean;
1163
- value: () => string | null;
1164
- disabled: () => string | null;
1165
- role: () => string | null;
1166
- label: () => string | null | undefined;
1167
1155
  getId: () => string;
1168
1156
  getOwnerWindow: () => (Window & typeof globalThis) | null;
1169
1157
  getOwnerDocument: () => Document;
1170
1158
  getComputedStyle: () => CSSStyleDeclaration;
1171
1159
  getTagName: () => string;
1160
+ tagName: () => string;
1172
1161
  typeIn: (text: string) => Promise<void>;
1162
+ getAttribute: (qualifiedName: string) => string | null;
1173
1163
  getDOMNode: () => Element;
1174
1164
  node: () => Element;
1175
1165
  debug: (maxLength?: number | undefined, options?: {
@@ -1179,6 +1169,7 @@ export declare const NavigationLocator: {
1179
1169
  getTextContent: () => string | null;
1180
1170
  getParentNode: () => ParentNode | null;
1181
1171
  parent: () => ParentNode | null;
1172
+ getBoundingClientRect: () => DOMRect;
1182
1173
  rect: () => DOMRect;
1183
1174
  hasClass: (classname: string) => boolean;
1184
1175
  containsFocus: () => boolean;
@@ -1190,17 +1181,25 @@ export declare const NavigationLocator: {
1190
1181
  exists: () => boolean;
1191
1182
  text: () => string | null;
1192
1183
  empty: () => boolean;
1184
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
1193
1185
  descendants: (selector: string) => Element[];
1194
1186
  ancestors: (selector: string) => ParentNode[];
1195
1187
  attribute: (qualifiedName: string) => string | null;
1196
1188
  style: (property: string) => string;
1197
1189
  classNames: () => string[];
1190
+ id: () => string;
1191
+ matches: (selector: string | undefined) => boolean;
1198
1192
  checked: () => any;
1199
1193
  selected: () => any;
1194
+ disabled: () => string | null;
1200
1195
  readonly: () => any;
1196
+ role: () => string | null;
1197
+ value: () => string | null;
1198
+ label: () => string | null | undefined;
1199
+ title: () => string | null | undefined;
1200
+ children: (selector: string) => Element[];
1201
1201
  parents: (selector: string) => ParentNode[];
1202
1202
  } & {
1203
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1204
1203
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1205
1204
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1206
1205
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -1238,6 +1237,7 @@ export declare const NavigationLocator: {
1238
1237
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1239
1238
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1240
1239
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1240
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1241
1241
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1242
1242
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1243
1243
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -1290,25 +1290,15 @@ export declare const NavigationLocator: {
1290
1290
  toString: (maxLength?: number | undefined, options?: {
1291
1291
  highlight: boolean;
1292
1292
  } | undefined) => string;
1293
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
1294
- children: (selector: string) => Element[];
1295
- title: () => string | null | undefined;
1296
- id: () => string;
1297
- tagName: () => string;
1298
- getAttribute: (qualifiedName: string) => string | null;
1299
- getBoundingClientRect: () => DOMRect;
1300
- matches: (selector: string | undefined) => boolean;
1301
1293
  visible: () => boolean;
1302
- value: () => string | null;
1303
- disabled: () => string | null;
1304
- role: () => string | null;
1305
- label: () => string | null | undefined;
1306
1294
  getId: () => string;
1307
1295
  getOwnerWindow: () => (Window & typeof globalThis) | null;
1308
1296
  getOwnerDocument: () => Document;
1309
1297
  getComputedStyle: () => CSSStyleDeclaration;
1310
1298
  getTagName: () => string;
1299
+ tagName: () => string;
1311
1300
  typeIn: (text: string) => Promise<void>;
1301
+ getAttribute: (qualifiedName: string) => string | null;
1312
1302
  getDOMNode: () => Element;
1313
1303
  node: () => Element;
1314
1304
  debug: (maxLength?: number | undefined, options?: {
@@ -1318,6 +1308,7 @@ export declare const NavigationLocator: {
1318
1308
  getTextContent: () => string | null;
1319
1309
  getParentNode: () => ParentNode | null;
1320
1310
  parent: () => ParentNode | null;
1311
+ getBoundingClientRect: () => DOMRect;
1321
1312
  rect: () => DOMRect;
1322
1313
  hasClass: (classname: string) => boolean;
1323
1314
  containsFocus: () => boolean;
@@ -1329,17 +1320,25 @@ export declare const NavigationLocator: {
1329
1320
  exists: () => boolean;
1330
1321
  text: () => string | null;
1331
1322
  empty: () => boolean;
1323
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
1332
1324
  descendants: (selector: string) => Element[];
1333
1325
  ancestors: (selector: string) => ParentNode[];
1334
1326
  attribute: (qualifiedName: string) => string | null;
1335
1327
  style: (property: string) => string;
1336
1328
  classNames: () => string[];
1329
+ id: () => string;
1330
+ matches: (selector: string | undefined) => boolean;
1337
1331
  checked: () => any;
1338
1332
  selected: () => any;
1333
+ disabled: () => string | null;
1339
1334
  readonly: () => any;
1335
+ role: () => string | null;
1336
+ value: () => string | null;
1337
+ label: () => string | null | undefined;
1338
+ title: () => string | null | undefined;
1339
+ children: (selector: string) => Element[];
1340
1340
  parents: (selector: string) => ParentNode[];
1341
1341
  } & {
1342
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1343
1342
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1344
1343
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1345
1344
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -1377,6 +1376,7 @@ export declare const NavigationLocator: {
1377
1376
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1378
1377
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1379
1378
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1379
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1380
1380
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1381
1381
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1382
1382
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -1431,25 +1431,15 @@ export declare const NavigationLocator: {
1431
1431
  toString: (maxLength?: number | undefined, options?: {
1432
1432
  highlight: boolean;
1433
1433
  } | undefined) => string;
1434
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
1435
- children: (selector: string) => Element[];
1436
- title: () => string | null | undefined;
1437
- id: () => string;
1438
- tagName: () => string;
1439
- getAttribute: (qualifiedName: string) => string | null;
1440
- getBoundingClientRect: () => DOMRect;
1441
- matches: (selector: string | undefined) => boolean;
1442
1434
  visible: () => boolean;
1443
- value: () => string | null;
1444
- disabled: () => string | null;
1445
- role: () => string | null;
1446
- label: () => string | null | undefined;
1447
1435
  getId: () => string;
1448
1436
  getOwnerWindow: () => (Window & typeof globalThis) | null;
1449
1437
  getOwnerDocument: () => Document;
1450
1438
  getComputedStyle: () => CSSStyleDeclaration;
1451
1439
  getTagName: () => string;
1440
+ tagName: () => string;
1452
1441
  typeIn: (text: string) => Promise<void>;
1442
+ getAttribute: (qualifiedName: string) => string | null;
1453
1443
  getDOMNode: () => Element;
1454
1444
  node: () => Element;
1455
1445
  debug: (maxLength?: number | undefined, options?: {
@@ -1459,6 +1449,7 @@ export declare const NavigationLocator: {
1459
1449
  getTextContent: () => string | null;
1460
1450
  getParentNode: () => ParentNode | null;
1461
1451
  parent: () => ParentNode | null;
1452
+ getBoundingClientRect: () => DOMRect;
1462
1453
  rect: () => DOMRect;
1463
1454
  hasClass: (classname: string) => boolean;
1464
1455
  containsFocus: () => boolean;
@@ -1470,17 +1461,25 @@ export declare const NavigationLocator: {
1470
1461
  exists: () => boolean;
1471
1462
  text: () => string | null;
1472
1463
  empty: () => boolean;
1464
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
1473
1465
  descendants: (selector: string) => Element[];
1474
1466
  ancestors: (selector: string) => ParentNode[];
1475
1467
  attribute: (qualifiedName: string) => string | null;
1476
1468
  style: (property: string) => string;
1477
1469
  classNames: () => string[];
1470
+ id: () => string;
1471
+ matches: (selector: string | undefined) => boolean;
1478
1472
  checked: () => any;
1479
1473
  selected: () => any;
1474
+ disabled: () => string | null;
1480
1475
  readonly: () => any;
1476
+ role: () => string | null;
1477
+ value: () => string | null;
1478
+ label: () => string | null | undefined;
1479
+ title: () => string | null | undefined;
1480
+ children: (selector: string) => Element[];
1481
1481
  parents: (selector: string) => ParentNode[];
1482
1482
  } & {
1483
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1484
1483
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1485
1484
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1486
1485
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -1518,6 +1517,7 @@ export declare const NavigationLocator: {
1518
1517
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1519
1518
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1520
1519
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1520
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1521
1521
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1522
1522
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1523
1523
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -1573,25 +1573,15 @@ export declare const NavigationLocator: {
1573
1573
  toString: (maxLength?: number | undefined, options?: {
1574
1574
  highlight: boolean;
1575
1575
  } | undefined) => string;
1576
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
1577
- children: (selector: string) => Element[];
1578
- title: () => string | null | undefined;
1579
- id: () => string;
1580
- tagName: () => string;
1581
- getAttribute: (qualifiedName: string) => string | null;
1582
- getBoundingClientRect: () => DOMRect;
1583
- matches: (selector: string | undefined) => boolean;
1584
1576
  visible: () => boolean;
1585
- value: () => string | null;
1586
- disabled: () => string | null;
1587
- role: () => string | null;
1588
- label: () => string | null | undefined;
1589
1577
  getId: () => string;
1590
1578
  getOwnerWindow: () => (Window & typeof globalThis) | null;
1591
1579
  getOwnerDocument: () => Document;
1592
1580
  getComputedStyle: () => CSSStyleDeclaration;
1593
1581
  getTagName: () => string;
1582
+ tagName: () => string;
1594
1583
  typeIn: (text: string) => Promise<void>;
1584
+ getAttribute: (qualifiedName: string) => string | null;
1595
1585
  getDOMNode: () => Element;
1596
1586
  node: () => Element;
1597
1587
  debug: (maxLength?: number | undefined, options?: {
@@ -1601,6 +1591,7 @@ export declare const NavigationLocator: {
1601
1591
  getTextContent: () => string | null;
1602
1592
  getParentNode: () => ParentNode | null;
1603
1593
  parent: () => ParentNode | null;
1594
+ getBoundingClientRect: () => DOMRect;
1604
1595
  rect: () => DOMRect;
1605
1596
  hasClass: (classname: string) => boolean;
1606
1597
  containsFocus: () => boolean;
@@ -1612,17 +1603,25 @@ export declare const NavigationLocator: {
1612
1603
  exists: () => boolean;
1613
1604
  text: () => string | null;
1614
1605
  empty: () => boolean;
1606
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
1615
1607
  descendants: (selector: string) => Element[];
1616
1608
  ancestors: (selector: string) => ParentNode[];
1617
1609
  attribute: (qualifiedName: string) => string | null;
1618
1610
  style: (property: string) => string;
1619
1611
  classNames: () => string[];
1612
+ id: () => string;
1613
+ matches: (selector: string | undefined) => boolean;
1620
1614
  checked: () => any;
1621
1615
  selected: () => any;
1616
+ disabled: () => string | null;
1622
1617
  readonly: () => any;
1618
+ role: () => string | null;
1619
+ value: () => string | null;
1620
+ label: () => string | null | undefined;
1621
+ title: () => string | null | undefined;
1622
+ children: (selector: string) => Element[];
1623
1623
  parents: (selector: string) => ParentNode[];
1624
1624
  } & {
1625
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1626
1625
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1627
1626
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1628
1627
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -1660,6 +1659,7 @@ export declare const NavigationLocator: {
1660
1659
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1661
1660
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1662
1661
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1662
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1663
1663
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1664
1664
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1665
1665
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -1712,25 +1712,15 @@ export declare const NavigationLocator: {
1712
1712
  toString: (maxLength?: number | undefined, options?: {
1713
1713
  highlight: boolean;
1714
1714
  } | undefined) => string;
1715
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
1716
- children: (selector: string) => Element[];
1717
- title: () => string | null | undefined;
1718
- id: () => string;
1719
- tagName: () => string;
1720
- getAttribute: (qualifiedName: string) => string | null;
1721
- getBoundingClientRect: () => DOMRect;
1722
- matches: (selector: string | undefined) => boolean;
1723
1715
  visible: () => boolean;
1724
- value: () => string | null;
1725
- disabled: () => string | null;
1726
- role: () => string | null;
1727
- label: () => string | null | undefined;
1728
1716
  getId: () => string;
1729
1717
  getOwnerWindow: () => (Window & typeof globalThis) | null;
1730
1718
  getOwnerDocument: () => Document;
1731
1719
  getComputedStyle: () => CSSStyleDeclaration;
1732
1720
  getTagName: () => string;
1721
+ tagName: () => string;
1733
1722
  typeIn: (text: string) => Promise<void>;
1723
+ getAttribute: (qualifiedName: string) => string | null;
1734
1724
  getDOMNode: () => Element;
1735
1725
  node: () => Element;
1736
1726
  debug: (maxLength?: number | undefined, options?: {
@@ -1740,6 +1730,7 @@ export declare const NavigationLocator: {
1740
1730
  getTextContent: () => string | null;
1741
1731
  getParentNode: () => ParentNode | null;
1742
1732
  parent: () => ParentNode | null;
1733
+ getBoundingClientRect: () => DOMRect;
1743
1734
  rect: () => DOMRect;
1744
1735
  hasClass: (classname: string) => boolean;
1745
1736
  containsFocus: () => boolean;
@@ -1751,17 +1742,25 @@ export declare const NavigationLocator: {
1751
1742
  exists: () => boolean;
1752
1743
  text: () => string | null;
1753
1744
  empty: () => boolean;
1745
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
1754
1746
  descendants: (selector: string) => Element[];
1755
1747
  ancestors: (selector: string) => ParentNode[];
1756
1748
  attribute: (qualifiedName: string) => string | null;
1757
1749
  style: (property: string) => string;
1758
1750
  classNames: () => string[];
1751
+ id: () => string;
1752
+ matches: (selector: string | undefined) => boolean;
1759
1753
  checked: () => any;
1760
1754
  selected: () => any;
1755
+ disabled: () => string | null;
1761
1756
  readonly: () => any;
1757
+ role: () => string | null;
1758
+ value: () => string | null;
1759
+ label: () => string | null | undefined;
1760
+ title: () => string | null | undefined;
1761
+ children: (selector: string) => Element[];
1762
1762
  parents: (selector: string) => ParentNode[];
1763
1763
  } & {
1764
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1765
1764
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1766
1765
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1767
1766
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -1799,6 +1798,7 @@ export declare const NavigationLocator: {
1799
1798
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1800
1799
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1801
1800
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1801
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1802
1802
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1803
1803
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1804
1804
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -1853,25 +1853,15 @@ export declare const NavigationLocator: {
1853
1853
  toString: (maxLength?: number | undefined, options?: {
1854
1854
  highlight: boolean;
1855
1855
  } | undefined) => string;
1856
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
1857
- children: (selector: string) => Element[];
1858
- title: () => string | null | undefined;
1859
- id: () => string;
1860
- tagName: () => string;
1861
- getAttribute: (qualifiedName: string) => string | null;
1862
- getBoundingClientRect: () => DOMRect;
1863
- matches: (selector: string | undefined) => boolean;
1864
1856
  visible: () => boolean;
1865
- value: () => string | null;
1866
- disabled: () => string | null;
1867
- role: () => string | null;
1868
- label: () => string | null | undefined;
1869
1857
  getId: () => string;
1870
1858
  getOwnerWindow: () => (Window & typeof globalThis) | null;
1871
1859
  getOwnerDocument: () => Document;
1872
1860
  getComputedStyle: () => CSSStyleDeclaration;
1873
1861
  getTagName: () => string;
1862
+ tagName: () => string;
1874
1863
  typeIn: (text: string) => Promise<void>;
1864
+ getAttribute: (qualifiedName: string) => string | null;
1875
1865
  getDOMNode: () => Element;
1876
1866
  node: () => Element;
1877
1867
  debug: (maxLength?: number | undefined, options?: {
@@ -1881,6 +1871,7 @@ export declare const NavigationLocator: {
1881
1871
  getTextContent: () => string | null;
1882
1872
  getParentNode: () => ParentNode | null;
1883
1873
  parent: () => ParentNode | null;
1874
+ getBoundingClientRect: () => DOMRect;
1884
1875
  rect: () => DOMRect;
1885
1876
  hasClass: (classname: string) => boolean;
1886
1877
  containsFocus: () => boolean;
@@ -1892,17 +1883,25 @@ export declare const NavigationLocator: {
1892
1883
  exists: () => boolean;
1893
1884
  text: () => string | null;
1894
1885
  empty: () => boolean;
1886
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
1895
1887
  descendants: (selector: string) => Element[];
1896
1888
  ancestors: (selector: string) => ParentNode[];
1897
1889
  attribute: (qualifiedName: string) => string | null;
1898
1890
  style: (property: string) => string;
1899
1891
  classNames: () => string[];
1892
+ id: () => string;
1893
+ matches: (selector: string | undefined) => boolean;
1900
1894
  checked: () => any;
1901
1895
  selected: () => any;
1896
+ disabled: () => string | null;
1902
1897
  readonly: () => any;
1898
+ role: () => string | null;
1899
+ value: () => string | null;
1900
+ label: () => string | null | undefined;
1901
+ title: () => string | null | undefined;
1902
+ children: (selector: string) => Element[];
1903
1903
  parents: (selector: string) => ParentNode[];
1904
1904
  } & {
1905
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1906
1905
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1907
1906
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1908
1907
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -1940,6 +1939,7 @@ export declare const NavigationLocator: {
1940
1939
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1941
1940
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1942
1941
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1942
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1943
1943
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1944
1944
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1945
1945
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;