src/table/head/table-head-expand.component.ts
| selector | [cdsTableHeadExpand], [ibmTableHeadExpand] |
| template | |
Properties |
HostBindings |
| class.cds--table-expand |
Type : boolean
|
Default value : true
|
| hostClass |
Default value : true
|
Decorators :
@HostBinding('class.cds--table-expand')
|
import {
Component,
HostBinding
} from "@angular/core";
@Component({
// tslint:disable-next-line: component-selector
selector: "[cdsTableHeadExpand], [ibmTableHeadExpand]",
template: `
<ng-content></ng-content>
`
})
export class TableHeadExpand {
@HostBinding("class.cds--table-expand") hostClass = true;
}