I am using @angular/material in my Angular 5 app. The version of Angular Material I am using is 5.0.2. I am using @angular/animations 5.1.2.
I have a very simple use case of the slider, like this:
<mat-slider style="width:100%;"></mat-slider>
but for some reason, when dragging the slider handle, it does not move to its new position until the mouse is released, which is obviously not very good. I have checked the Material demo and that works as expected: the slider moves on mouse move, and doesn't just jump when the mouse is released.
Can anyone suggest why this might be happening? It'll never pass AC at work!