(Angular 2 RC4)
With @HostBinding we should be able to modify properties of the host, right? My question is, does this apply to @Input() properties as well and if so
If your @Input is an object, you can do:
@Input() settings: Settings; @HostBinding('class.active') public get isActive(): boolean { return this.settings.isActive; }