How can I create a range slider in Angular similar to https://jqueryui.com/slider/#range where the min and max values are pushed to $gt and $lt respectively?
this.form = this.fb.group({
'price': this.fb.group({
'$lt': [null, []],
'$gt': [null, []]
})
})
Use ng2-nouislider.
It has multiple options for Range Slider.