File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
tools/public_api_guard/material Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ export class MatTabHarness extends ContentContainerComponentHarness<string> {
37
37
// @public
38
38
export class MatTabLinkHarness extends ComponentHarness {
39
39
click(): Promise <void >;
40
+ getAriaControls(): Promise <string | null >;
40
41
getLabel(): Promise <string >;
41
42
static hostSelector: string ;
42
43
isActive(): Promise <boolean >;
@@ -49,6 +50,7 @@ export class MatTabNavBarHarness extends ComponentHarness {
49
50
clickLink(filter ? : TabLinkHarnessFilters ): Promise <void >;
50
51
getActiveLink(): Promise <MatTabLinkHarness >;
51
52
getLinks(filter ? : TabLinkHarnessFilters ): Promise <MatTabLinkHarness []>;
53
+ getPanel(): Promise <MatTabNavPanelHarness >;
52
54
static hostSelector: string ;
53
55
static with(options ? : TabNavBarHarnessFilters ): HarnessPredicate <MatTabNavBarHarness >;
54
56
}
@@ -72,6 +74,10 @@ export interface TabLinkHarnessFilters extends BaseHarnessFilters {
72
74
export interface TabNavBarHarnessFilters extends BaseHarnessFilters {
73
75
}
74
76
77
+ // @public
78
+ export interface TabNavPanelHarnessFilters extends BaseHarnessFilters {
79
+ }
80
+
75
81
// (No @packageDocumentation comment for this package)
76
82
77
83
```
You can’t perform that action at this time.
0 commit comments