import { Component, OnInit, Output,EventEmitter, Input } from '@angular/core'; @Component({ selector: 'esp-navigation-dropdown', templateUrl: './navigation-dropdown.component.html', styleUrls: ['./navigation-dropdown.component.scss'] }) export class NavigationDropdownComponent implements OnInit { @Input() navigationDropDown = { show: false, title: null, options:null}; @Output() navigationDropDownChange = new EventEmitter(); showOptions = false; constructor() { } ngOnInit(): void { } onDDChange(event){ this.navigationDropDownChange.emit(event); } }