@instructure/ui-popover 8.13.1-snapshot.3 → 8.13.1-snapshot.41

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 customMethods: {
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 customMethods: {
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 customMethods: {
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 customMethods: {
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>;
@@ -163,25 +163,15 @@ export declare const PopoverLocator: {
163
163
  toString: (maxLength?: number | undefined, options?: {
164
164
  highlight: boolean;
165
165
  } | undefined) => string;
166
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
167
- children: (selector: string) => Element[];
168
- title: () => string | null | undefined;
169
- id: () => string;
170
- tagName: () => string;
171
- getAttribute: (qualifiedName: string) => string | null;
172
- getBoundingClientRect: () => DOMRect;
173
- matches: (selector: string | undefined) => boolean;
174
166
  visible: () => boolean;
175
- value: () => string | null;
176
- disabled: () => string | null;
177
- role: () => string | null;
178
- label: () => string | null | undefined;
179
167
  getId: () => string;
180
168
  getOwnerWindow: () => (Window & typeof globalThis) | null;
181
169
  getOwnerDocument: () => Document;
182
170
  getComputedStyle: () => CSSStyleDeclaration;
183
171
  getTagName: () => string;
172
+ tagName: () => string;
184
173
  typeIn: (text: string) => Promise<void>;
174
+ getAttribute: (qualifiedName: string) => string | null;
185
175
  getDOMNode: () => Element;
186
176
  node: () => Element;
187
177
  debug: (maxLength?: number | undefined, options?: {
@@ -191,6 +181,7 @@ export declare const PopoverLocator: {
191
181
  getTextContent: () => string | null;
192
182
  getParentNode: () => ParentNode | null;
193
183
  parent: () => ParentNode | null;
184
+ getBoundingClientRect: () => DOMRect;
194
185
  rect: () => DOMRect;
195
186
  hasClass: (classname: string) => boolean;
196
187
  containsFocus: () => boolean;
@@ -202,17 +193,25 @@ export declare const PopoverLocator: {
202
193
  exists: () => boolean;
203
194
  text: () => string | null;
204
195
  empty: () => boolean;
196
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
205
197
  descendants: (selector: string) => Element[];
206
198
  ancestors: (selector: string) => ParentNode[];
207
199
  attribute: (qualifiedName: string) => string | null;
208
200
  style: (property: string) => string;
209
201
  classNames: () => string[];
202
+ id: () => string;
203
+ matches: (selector: string | undefined) => boolean;
210
204
  checked: () => any;
211
205
  selected: () => any;
206
+ disabled: () => string | null;
212
207
  readonly: () => any;
208
+ role: () => string | null;
209
+ value: () => string | null;
210
+ label: () => string | null | undefined;
211
+ title: () => string | null | undefined;
212
+ children: (selector: string) => Element[];
213
213
  parents: (selector: string) => ParentNode[];
214
214
  } & {
215
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
216
215
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
217
216
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
218
217
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -250,6 +249,7 @@ export declare const PopoverLocator: {
250
249
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
251
250
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
252
251
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
252
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
253
253
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
254
254
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
255
255
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -309,25 +309,15 @@ export declare const PopoverLocator: {
309
309
  toString: (maxLength?: number | undefined, options?: {
310
310
  highlight: boolean;
311
311
  } | undefined) => string;
312
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
313
- children: (selector: string) => Element[];
314
- title: () => string | null | undefined;
315
- id: () => string;
316
- tagName: () => string;
317
- getAttribute: (qualifiedName: string) => string | null;
318
- getBoundingClientRect: () => DOMRect;
319
- matches: (selector: string | undefined) => boolean;
320
312
  visible: () => boolean;
321
- value: () => string | null;
322
- disabled: () => string | null;
323
- role: () => string | null;
324
- label: () => string | null | undefined;
325
313
  getId: () => string;
326
314
  getOwnerWindow: () => (Window & typeof globalThis) | null;
327
315
  getOwnerDocument: () => Document;
328
316
  getComputedStyle: () => CSSStyleDeclaration;
329
317
  getTagName: () => string;
318
+ tagName: () => string;
330
319
  typeIn: (text: string) => Promise<void>;
320
+ getAttribute: (qualifiedName: string) => string | null;
331
321
  getDOMNode: () => Element;
332
322
  node: () => Element;
333
323
  debug: (maxLength?: number | undefined, options?: {
@@ -337,6 +327,7 @@ export declare const PopoverLocator: {
337
327
  getTextContent: () => string | null;
338
328
  getParentNode: () => ParentNode | null;
339
329
  parent: () => ParentNode | null;
330
+ getBoundingClientRect: () => DOMRect;
340
331
  rect: () => DOMRect;
341
332
  hasClass: (classname: string) => boolean;
342
333
  containsFocus: () => boolean;
@@ -348,17 +339,25 @@ export declare const PopoverLocator: {
348
339
  exists: () => boolean;
349
340
  text: () => string | null;
350
341
  empty: () => boolean;
342
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
351
343
  descendants: (selector: string) => Element[];
352
344
  ancestors: (selector: string) => ParentNode[];
353
345
  attribute: (qualifiedName: string) => string | null;
354
346
  style: (property: string) => string;
355
347
  classNames: () => string[];
348
+ id: () => string;
349
+ matches: (selector: string | undefined) => boolean;
356
350
  checked: () => any;
357
351
  selected: () => any;
352
+ disabled: () => string | null;
358
353
  readonly: () => any;
354
+ role: () => string | null;
355
+ value: () => string | null;
356
+ label: () => string | null | undefined;
357
+ title: () => string | null | undefined;
358
+ children: (selector: string) => Element[];
359
359
  parents: (selector: string) => ParentNode[];
360
360
  } & {
361
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
362
361
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
363
362
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
364
363
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -396,6 +395,7 @@ export declare const PopoverLocator: {
396
395
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
397
396
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
398
397
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
398
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
399
399
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
400
400
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
401
401
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -450,25 +450,15 @@ export declare const PopoverLocator: {
450
450
  toString: (maxLength?: number | undefined, options?: {
451
451
  highlight: boolean;
452
452
  } | undefined) => string;
453
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
454
- children: (selector: string) => Element[];
455
- title: () => string | null | undefined;
456
- id: () => string;
457
- tagName: () => string;
458
- getAttribute: (qualifiedName: string) => string | null;
459
- getBoundingClientRect: () => DOMRect;
460
- matches: (selector: string | undefined) => boolean;
461
453
  visible: () => boolean;
462
- value: () => string | null;
463
- disabled: () => string | null;
464
- role: () => string | null;
465
- label: () => string | null | undefined;
466
454
  getId: () => string;
467
455
  getOwnerWindow: () => (Window & typeof globalThis) | null;
468
456
  getOwnerDocument: () => Document;
469
457
  getComputedStyle: () => CSSStyleDeclaration;
470
458
  getTagName: () => string;
459
+ tagName: () => string;
471
460
  typeIn: (text: string) => Promise<void>;
461
+ getAttribute: (qualifiedName: string) => string | null;
472
462
  getDOMNode: () => Element;
473
463
  node: () => Element;
474
464
  debug: (maxLength?: number | undefined, options?: {
@@ -478,6 +468,7 @@ export declare const PopoverLocator: {
478
468
  getTextContent: () => string | null;
479
469
  getParentNode: () => ParentNode | null;
480
470
  parent: () => ParentNode | null;
471
+ getBoundingClientRect: () => DOMRect;
481
472
  rect: () => DOMRect;
482
473
  hasClass: (classname: string) => boolean;
483
474
  containsFocus: () => boolean;
@@ -489,17 +480,25 @@ export declare const PopoverLocator: {
489
480
  exists: () => boolean;
490
481
  text: () => string | null;
491
482
  empty: () => boolean;
483
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
492
484
  descendants: (selector: string) => Element[];
493
485
  ancestors: (selector: string) => ParentNode[];
494
486
  attribute: (qualifiedName: string) => string | null;
495
487
  style: (property: string) => string;
496
488
  classNames: () => string[];
489
+ id: () => string;
490
+ matches: (selector: string | undefined) => boolean;
497
491
  checked: () => any;
498
492
  selected: () => any;
493
+ disabled: () => string | null;
499
494
  readonly: () => any;
495
+ role: () => string | null;
496
+ value: () => string | null;
497
+ label: () => string | null | undefined;
498
+ title: () => string | null | undefined;
499
+ children: (selector: string) => Element[];
500
500
  parents: (selector: string) => ParentNode[];
501
501
  } & {
502
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
503
502
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
504
503
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
505
504
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -537,6 +536,7 @@ export declare const PopoverLocator: {
537
536
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
538
537
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
539
538
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
539
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
540
540
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
541
541
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
542
542
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -590,25 +590,15 @@ export declare const PopoverLocator: {
590
590
  toString: (maxLength?: number | undefined, options?: {
591
591
  highlight: boolean;
592
592
  } | undefined) => string;
593
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
594
- children: (selector: string) => Element[];
595
- title: () => string | null | undefined;
596
- id: () => string;
597
- tagName: () => string;
598
- getAttribute: (qualifiedName: string) => string | null;
599
- getBoundingClientRect: () => DOMRect;
600
- matches: (selector: string | undefined) => boolean;
601
593
  visible: () => boolean;
602
- value: () => string | null;
603
- disabled: () => string | null;
604
- role: () => string | null;
605
- label: () => string | null | undefined;
606
594
  getId: () => string;
607
595
  getOwnerWindow: () => (Window & typeof globalThis) | null;
608
596
  getOwnerDocument: () => Document;
609
597
  getComputedStyle: () => CSSStyleDeclaration;
610
598
  getTagName: () => string;
599
+ tagName: () => string;
611
600
  typeIn: (text: string) => Promise<void>;
601
+ getAttribute: (qualifiedName: string) => string | null;
612
602
  getDOMNode: () => Element;
613
603
  node: () => Element;
614
604
  debug: (maxLength?: number | undefined, options?: {
@@ -618,6 +608,7 @@ export declare const PopoverLocator: {
618
608
  getTextContent: () => string | null;
619
609
  getParentNode: () => ParentNode | null;
620
610
  parent: () => ParentNode | null;
611
+ getBoundingClientRect: () => DOMRect;
621
612
  rect: () => DOMRect;
622
613
  hasClass: (classname: string) => boolean;
623
614
  containsFocus: () => boolean;
@@ -629,17 +620,25 @@ export declare const PopoverLocator: {
629
620
  exists: () => boolean;
630
621
  text: () => string | null;
631
622
  empty: () => boolean;
623
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
632
624
  descendants: (selector: string) => Element[];
633
625
  ancestors: (selector: string) => ParentNode[];
634
626
  attribute: (qualifiedName: string) => string | null;
635
627
  style: (property: string) => string;
636
628
  classNames: () => string[];
629
+ id: () => string;
630
+ matches: (selector: string | undefined) => boolean;
637
631
  checked: () => any;
638
632
  selected: () => any;
633
+ disabled: () => string | null;
639
634
  readonly: () => any;
635
+ role: () => string | null;
636
+ value: () => string | null;
637
+ label: () => string | null | undefined;
638
+ title: () => string | null | undefined;
639
+ children: (selector: string) => Element[];
640
640
  parents: (selector: string) => ParentNode[];
641
641
  } & {
642
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
643
642
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
644
643
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
645
644
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -677,6 +676,7 @@ export declare const PopoverLocator: {
677
676
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
678
677
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
679
678
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
679
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
680
680
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
681
681
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
682
682
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -731,25 +731,15 @@ export declare const PopoverLocator: {
731
731
  toString: (maxLength?: number | undefined, options?: {
732
732
  highlight: boolean;
733
733
  } | undefined) => string;
734
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
735
- children: (selector: string) => Element[];
736
- title: () => string | null | undefined;
737
- id: () => string;
738
- tagName: () => string;
739
- getAttribute: (qualifiedName: string) => string | null;
740
- getBoundingClientRect: () => DOMRect;
741
- matches: (selector: string | undefined) => boolean;
742
734
  visible: () => boolean;
743
- value: () => string | null;
744
- disabled: () => string | null;
745
- role: () => string | null;
746
- label: () => string | null | undefined;
747
735
  getId: () => string;
748
736
  getOwnerWindow: () => (Window & typeof globalThis) | null;
749
737
  getOwnerDocument: () => Document;
750
738
  getComputedStyle: () => CSSStyleDeclaration;
751
739
  getTagName: () => string;
740
+ tagName: () => string;
752
741
  typeIn: (text: string) => Promise<void>;
742
+ getAttribute: (qualifiedName: string) => string | null;
753
743
  getDOMNode: () => Element;
754
744
  node: () => Element;
755
745
  debug: (maxLength?: number | undefined, options?: {
@@ -759,6 +749,7 @@ export declare const PopoverLocator: {
759
749
  getTextContent: () => string | null;
760
750
  getParentNode: () => ParentNode | null;
761
751
  parent: () => ParentNode | null;
752
+ getBoundingClientRect: () => DOMRect;
762
753
  rect: () => DOMRect;
763
754
  hasClass: (classname: string) => boolean;
764
755
  containsFocus: () => boolean;
@@ -770,17 +761,25 @@ export declare const PopoverLocator: {
770
761
  exists: () => boolean;
771
762
  text: () => string | null;
772
763
  empty: () => boolean;
764
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
773
765
  descendants: (selector: string) => Element[];
774
766
  ancestors: (selector: string) => ParentNode[];
775
767
  attribute: (qualifiedName: string) => string | null;
776
768
  style: (property: string) => string;
777
769
  classNames: () => string[];
770
+ id: () => string;
771
+ matches: (selector: string | undefined) => boolean;
778
772
  checked: () => any;
779
773
  selected: () => any;
774
+ disabled: () => string | null;
780
775
  readonly: () => any;
776
+ role: () => string | null;
777
+ value: () => string | null;
778
+ label: () => string | null | undefined;
779
+ title: () => string | null | undefined;
780
+ children: (selector: string) => Element[];
781
781
  parents: (selector: string) => ParentNode[];
782
782
  } & {
783
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
784
783
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
785
784
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
786
785
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -818,6 +817,7 @@ export declare const PopoverLocator: {
818
817
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
819
818
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
820
819
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
820
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
821
821
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
822
822
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
823
823
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -871,25 +871,15 @@ export declare const PopoverLocator: {
871
871
  toString: (maxLength?: number | undefined, options?: {
872
872
  highlight: boolean;
873
873
  } | undefined) => string;
874
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
875
- children: (selector: string) => Element[];
876
- title: () => string | null | undefined;
877
- id: () => string;
878
- tagName: () => string;
879
- getAttribute: (qualifiedName: string) => string | null;
880
- getBoundingClientRect: () => DOMRect;
881
- matches: (selector: string | undefined) => boolean;
882
874
  visible: () => boolean;
883
- value: () => string | null;
884
- disabled: () => string | null;
885
- role: () => string | null;
886
- label: () => string | null | undefined;
887
875
  getId: () => string;
888
876
  getOwnerWindow: () => (Window & typeof globalThis) | null;
889
877
  getOwnerDocument: () => Document;
890
878
  getComputedStyle: () => CSSStyleDeclaration;
891
879
  getTagName: () => string;
880
+ tagName: () => string;
892
881
  typeIn: (text: string) => Promise<void>;
882
+ getAttribute: (qualifiedName: string) => string | null;
893
883
  getDOMNode: () => Element;
894
884
  node: () => Element;
895
885
  debug: (maxLength?: number | undefined, options?: {
@@ -899,6 +889,7 @@ export declare const PopoverLocator: {
899
889
  getTextContent: () => string | null;
900
890
  getParentNode: () => ParentNode | null;
901
891
  parent: () => ParentNode | null;
892
+ getBoundingClientRect: () => DOMRect;
902
893
  rect: () => DOMRect;
903
894
  hasClass: (classname: string) => boolean;
904
895
  containsFocus: () => boolean;
@@ -910,17 +901,25 @@ export declare const PopoverLocator: {
910
901
  exists: () => boolean;
911
902
  text: () => string | null;
912
903
  empty: () => boolean;
904
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
913
905
  descendants: (selector: string) => Element[];
914
906
  ancestors: (selector: string) => ParentNode[];
915
907
  attribute: (qualifiedName: string) => string | null;
916
908
  style: (property: string) => string;
917
909
  classNames: () => string[];
910
+ id: () => string;
911
+ matches: (selector: string | undefined) => boolean;
918
912
  checked: () => any;
919
913
  selected: () => any;
914
+ disabled: () => string | null;
920
915
  readonly: () => any;
916
+ role: () => string | null;
917
+ value: () => string | null;
918
+ label: () => string | null | undefined;
919
+ title: () => string | null | undefined;
920
+ children: (selector: string) => Element[];
921
921
  parents: (selector: string) => ParentNode[];
922
922
  } & {
923
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
924
923
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
925
924
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
926
925
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -958,6 +957,7 @@ export declare const PopoverLocator: {
958
957
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
959
958
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
960
959
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
960
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
961
961
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
962
962
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
963
963
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -1012,25 +1012,15 @@ export declare const PopoverLocator: {
1012
1012
  toString: (maxLength?: number | undefined, options?: {
1013
1013
  highlight: boolean;
1014
1014
  } | undefined) => string;
1015
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
1016
- children: (selector: string) => Element[];
1017
- title: () => string | null | undefined;
1018
- id: () => string;
1019
- tagName: () => string;
1020
- getAttribute: (qualifiedName: string) => string | null;
1021
- getBoundingClientRect: () => DOMRect;
1022
- matches: (selector: string | undefined) => boolean;
1023
1015
  visible: () => boolean;
1024
- value: () => string | null;
1025
- disabled: () => string | null;
1026
- role: () => string | null;
1027
- label: () => string | null | undefined;
1028
1016
  getId: () => string;
1029
1017
  getOwnerWindow: () => (Window & typeof globalThis) | null;
1030
1018
  getOwnerDocument: () => Document;
1031
1019
  getComputedStyle: () => CSSStyleDeclaration;
1032
1020
  getTagName: () => string;
1021
+ tagName: () => string;
1033
1022
  typeIn: (text: string) => Promise<void>;
1023
+ getAttribute: (qualifiedName: string) => string | null;
1034
1024
  getDOMNode: () => Element;
1035
1025
  node: () => Element;
1036
1026
  debug: (maxLength?: number | undefined, options?: {
@@ -1040,6 +1030,7 @@ export declare const PopoverLocator: {
1040
1030
  getTextContent: () => string | null;
1041
1031
  getParentNode: () => ParentNode | null;
1042
1032
  parent: () => ParentNode | null;
1033
+ getBoundingClientRect: () => DOMRect;
1043
1034
  rect: () => DOMRect;
1044
1035
  hasClass: (classname: string) => boolean;
1045
1036
  containsFocus: () => boolean;
@@ -1051,17 +1042,25 @@ export declare const PopoverLocator: {
1051
1042
  exists: () => boolean;
1052
1043
  text: () => string | null;
1053
1044
  empty: () => boolean;
1045
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
1054
1046
  descendants: (selector: string) => Element[];
1055
1047
  ancestors: (selector: string) => ParentNode[];
1056
1048
  attribute: (qualifiedName: string) => string | null;
1057
1049
  style: (property: string) => string;
1058
1050
  classNames: () => string[];
1051
+ id: () => string;
1052
+ matches: (selector: string | undefined) => boolean;
1059
1053
  checked: () => any;
1060
1054
  selected: () => any;
1055
+ disabled: () => string | null;
1061
1056
  readonly: () => any;
1057
+ role: () => string | null;
1058
+ value: () => string | null;
1059
+ label: () => string | null | undefined;
1060
+ title: () => string | null | undefined;
1061
+ children: (selector: string) => Element[];
1062
1062
  parents: (selector: string) => ParentNode[];
1063
1063
  } & {
1064
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1065
1064
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1066
1065
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1067
1066
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -1099,6 +1098,7 @@ export declare const PopoverLocator: {
1099
1098
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1100
1099
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1101
1100
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1101
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1102
1102
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1103
1103
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1104
1104
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -1152,25 +1152,15 @@ export declare const PopoverLocator: {
1152
1152
  toString: (maxLength?: number | undefined, options?: {
1153
1153
  highlight: boolean;
1154
1154
  } | undefined) => string;
1155
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
1156
- children: (selector: string) => Element[];
1157
- title: () => string | null | undefined;
1158
- id: () => string;
1159
- tagName: () => string;
1160
- getAttribute: (qualifiedName: string) => string | null;
1161
- getBoundingClientRect: () => DOMRect;
1162
- matches: (selector: string | undefined) => boolean;
1163
1155
  visible: () => boolean;
1164
- value: () => string | null;
1165
- disabled: () => string | null;
1166
- role: () => string | null;
1167
- label: () => string | null | undefined;
1168
1156
  getId: () => string;
1169
1157
  getOwnerWindow: () => (Window & typeof globalThis) | null;
1170
1158
  getOwnerDocument: () => Document;
1171
1159
  getComputedStyle: () => CSSStyleDeclaration;
1172
1160
  getTagName: () => string;
1161
+ tagName: () => string;
1173
1162
  typeIn: (text: string) => Promise<void>;
1163
+ getAttribute: (qualifiedName: string) => string | null;
1174
1164
  getDOMNode: () => Element;
1175
1165
  node: () => Element;
1176
1166
  debug: (maxLength?: number | undefined, options?: {
@@ -1180,6 +1170,7 @@ export declare const PopoverLocator: {
1180
1170
  getTextContent: () => string | null;
1181
1171
  getParentNode: () => ParentNode | null;
1182
1172
  parent: () => ParentNode | null;
1173
+ getBoundingClientRect: () => DOMRect;
1183
1174
  rect: () => DOMRect;
1184
1175
  hasClass: (classname: string) => boolean;
1185
1176
  containsFocus: () => boolean;
@@ -1191,17 +1182,25 @@ export declare const PopoverLocator: {
1191
1182
  exists: () => boolean;
1192
1183
  text: () => string | null;
1193
1184
  empty: () => boolean;
1185
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
1194
1186
  descendants: (selector: string) => Element[];
1195
1187
  ancestors: (selector: string) => ParentNode[];
1196
1188
  attribute: (qualifiedName: string) => string | null;
1197
1189
  style: (property: string) => string;
1198
1190
  classNames: () => string[];
1191
+ id: () => string;
1192
+ matches: (selector: string | undefined) => boolean;
1199
1193
  checked: () => any;
1200
1194
  selected: () => any;
1195
+ disabled: () => string | null;
1201
1196
  readonly: () => any;
1197
+ role: () => string | null;
1198
+ value: () => string | null;
1199
+ label: () => string | null | undefined;
1200
+ title: () => string | null | undefined;
1201
+ children: (selector: string) => Element[];
1202
1202
  parents: (selector: string) => ParentNode[];
1203
1203
  } & {
1204
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1205
1204
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1206
1205
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1207
1206
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -1239,6 +1238,7 @@ export declare const PopoverLocator: {
1239
1238
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1240
1239
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1241
1240
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1241
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1242
1242
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1243
1243
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1244
1244
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -1293,25 +1293,15 @@ export declare const PopoverLocator: {
1293
1293
  toString: (maxLength?: number | undefined, options?: {
1294
1294
  highlight: boolean;
1295
1295
  } | undefined) => string;
1296
- contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
1297
- children: (selector: string) => Element[];
1298
- title: () => string | null | undefined;
1299
- id: () => string;
1300
- tagName: () => string;
1301
- getAttribute: (qualifiedName: string) => string | null;
1302
- getBoundingClientRect: () => DOMRect;
1303
- matches: (selector: string | undefined) => boolean;
1304
1296
  visible: () => boolean;
1305
- value: () => string | null;
1306
- disabled: () => string | null;
1307
- role: () => string | null;
1308
- label: () => string | null | undefined;
1309
1297
  getId: () => string;
1310
1298
  getOwnerWindow: () => (Window & typeof globalThis) | null;
1311
1299
  getOwnerDocument: () => Document;
1312
1300
  getComputedStyle: () => CSSStyleDeclaration;
1313
1301
  getTagName: () => string;
1302
+ tagName: () => string;
1314
1303
  typeIn: (text: string) => Promise<void>;
1304
+ getAttribute: (qualifiedName: string) => string | null;
1315
1305
  getDOMNode: () => Element;
1316
1306
  node: () => Element;
1317
1307
  debug: (maxLength?: number | undefined, options?: {
@@ -1321,6 +1311,7 @@ export declare const PopoverLocator: {
1321
1311
  getTextContent: () => string | null;
1322
1312
  getParentNode: () => ParentNode | null;
1323
1313
  parent: () => ParentNode | null;
1314
+ getBoundingClientRect: () => DOMRect;
1324
1315
  rect: () => DOMRect;
1325
1316
  hasClass: (classname: string) => boolean;
1326
1317
  containsFocus: () => boolean;
@@ -1332,17 +1323,25 @@ export declare const PopoverLocator: {
1332
1323
  exists: () => boolean;
1333
1324
  text: () => string | null;
1334
1325
  empty: () => boolean;
1326
+ contains: (elementOrSelector?: string | Element | undefined) => boolean | Element;
1335
1327
  descendants: (selector: string) => Element[];
1336
1328
  ancestors: (selector: string) => ParentNode[];
1337
1329
  attribute: (qualifiedName: string) => string | null;
1338
1330
  style: (property: string) => string;
1339
1331
  classNames: () => string[];
1332
+ id: () => string;
1333
+ matches: (selector: string | undefined) => boolean;
1340
1334
  checked: () => any;
1341
1335
  selected: () => any;
1336
+ disabled: () => string | null;
1342
1337
  readonly: () => any;
1338
+ role: () => string | null;
1339
+ value: () => string | null;
1340
+ label: () => string | null | undefined;
1341
+ title: () => string | null | undefined;
1342
+ children: (selector: string) => Element[];
1343
1343
  parents: (selector: string) => ParentNode[];
1344
1344
  } & {
1345
- scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1346
1345
  copy: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1347
1346
  cut: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1348
1347
  paste: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
@@ -1380,6 +1379,7 @@ export declare const PopoverLocator: {
1380
1379
  touchEnd: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1381
1380
  touchMove: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1382
1381
  touchStart: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1382
+ scroll: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1383
1383
  wheel: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1384
1384
  abort: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;
1385
1385
  canPlay: (init?: import("@instructure/ui-test-queries/src/utils/events").FireEventInit | undefined, options?: Record<string, unknown> | undefined) => Promise<Event>;