Can someone explain me how is my HostBinding in nested component understand that we already have "isTablet" property and just add "is-tablet" class to my host element ?
Webstorm says that we have overrided base isTablet property but my child component has TRUE in this property.
I can't find any explanations in official documentation
export abstract class DetailBase {
@Input() isTablet: boolean = true;
}
export class ChildComponent extends DetailBase {
@HostBinding('class.is-tablet') isTablet: boolean; //why it is TRUE ?
}