angular-slider / ngx-slider

Self-contained, mobile friendly slider component for Angular based on angularjs-slider
https://angular-slider.github.io/ngx-slider/
MIT License
390 stars 175 forks source link

Slider Max Value Label Get Outside Container and Makes Overflow When using rightToLeft #361

Open malek-itani opened 1 year ago

malek-itani commented 1 year ago

image

having the following options

  value: number = 123;
  options: Options = {
    floor: 0,
    ceil: 250,
    rightToLeft: true,
    translate: (value: number): string => {
      return `Maximun ${value} hours`;
    },
  };

the max label(ngx-slider-model-value) gets outside the window, and doesn't stop at left:0px

image

https://ngx-slider-simple-slider-example-vdofzc.stackblitz.io