You can correct the value yourself.
When you change the slider using the method, also emit the change:
this.slider.value = 10;
this.slider.change.emit({ source: this.slider, value: this.slider.value });
I believe they fixed it, but it helps if you want the event to be emitted when the value was also changed using the method.
source
share