I\'m using @input to receive a property from parent component in order to activate a CSS class in one of child component\'s element.
I\'m able to receiv
Another approach: use rxjs/BehaviorSubject to pass status between different components.
Here's the plunkr.
I name subject with a suffix 'Rxx', so the BehaviorSubject for searchStatus will be searchStatusRxx.
searchStatusRxx = new BehaviorSubject(false);, searchStatusRxx.next(value) to change the latest value.