src/tiles/expandable-tile-below.directive.ts
| Selector | [cdsBelowFold], [ibmBelowFold] |
Properties |
HostBindings |
| class.cds--tile-content__below-the-fold |
Type : boolean
|
Default value : true
|
| belowFold |
Default value : true
|
Decorators :
@HostBinding('class.cds--tile-content__below-the-fold')
|
import { Directive, HostBinding } from "@angular/core";
@Directive({
selector: "[cdsBelowFold], [ibmBelowFold]"
})
export class ExpandableTileBelowFoldDirective {
@HostBinding("class.cds--tile-content__below-the-fold") belowFold = true;
}