I need to access to some properties of the parent DOM element which contains the component from where i want to get the info, is there a way to do such thing?
Here is how my component looks like:
import { Component, Input } from "@angular/core";
import "./loadingSpinner.component.css!";
    @Component({
        selector: "loading-spinner",
        template: `
            <div *ngIf="showSpinner" class="loader-directive-wrapper">
                <div class="loader"></div>
            </div>`
    })
    export class LoadingSpinnerComponent {
        @Input() public showSpinner: boolean = false;
    }