File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -1655,6 +1655,11 @@ export const ngdoc: any = {
1655
1655
"name" : "removable" ,
1656
1656
"type" : "boolean" ,
1657
1657
"description" : "<p>if true tab can be removable, additional button will appear </p>\n"
1658
+ } ,
1659
+ {
1660
+ "name" : "id" ,
1661
+ "type" : "string" ,
1662
+ "description" : "<p>tab's ID</p>\n"
1658
1663
}
1659
1664
] ,
1660
1665
"outputs" : [
Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ import { TabsetComponent } from './tabset.component';
5
5
export class TabDirective implements OnInit {
6
6
/** tab header text */
7
7
@Input ( ) public heading : string ;
8
+ /** tab id */
9
+ @Input ( ) public id : string ;
8
10
/** if true tab can not be activated */
9
11
@Input ( ) public disabled : boolean ;
10
12
/** if true tab can be removable, additional button will appear */
You can’t perform that action at this time.
0 commit comments