I have a mat-chip-list and want to detect when it changes ie: items added or removed.
I expected I could attach a form control to it and utilise the valueChanges observable to achieve this ie:
<mat-chip-list #chipList [formControl]="chipListCtrl">
chipListCtrl = new FormControl();
...
this.fruitCtrl.valueChanges.pipe(tap(value => console.log('fruitCtrl: ', value))).subscribe();
However this is not logging anything to the console.
Refer to Stackblitz where the input control successfully works in this manner, but the chip list does not.
Is this possible and if so what do I need to do to get it to work?