src/ui-shell/header/header-global.component.ts
Container for HeaderActions.
| selector | cds-header-global, ibm-header-global |
| template | |
Properties |
HostBindings |
| class.cds--header__global |
Type : boolean
|
Default value : true
|
| hostClass |
Default value : true
|
Decorators :
@HostBinding('class.cds--header__global')
|
import { Component, HostBinding } from "@angular/core";
/**
* Container for `HeaderAction`s.
*/
@Component({
selector: "cds-header-global, ibm-header-global",
template: `
<ng-content></ng-content>
`
})
export class HeaderGlobal {
@HostBinding("class.cds--header__global") hostClass = true;
}