{{!--
  Binding through get-helper value=(get this "value") is a way to achieve one way binding.
  It makes value immutable within component, what is major rule of "Data Down Actions Up (DDAU)" pattern:
  component should display data, but not mutate it by its own.
--}}
{{ui-slider
  value=(get this "value")
  defaultValue=defaultValue
  min=min
  max=max
  step=step
  disabled=readonly
  immediateResponse=false
  tooltip="hide"
}}
