I'm trying to make a FAB button in Angular with a third state.
When the user clicks on a button it opens a "detail view" of that button.
See the stackblitz, plz https://stackblitz.com/edit/angular-dgx6fl
The problem is, the 'open' and 'detail' states occur in parallel, not in sequence.
So I have this kind of "mix" state, the detail view starts transitioning while the fab buttons are still closing.
How to avoid that and start triggers in sequence?
Thanks!