{{! template-lint-disable require-input-label }}

{{#if this.shouldRenderRangeInput}}
  <input
    type="range"
    value={{@value}}
    min={{@min}}
    max={{@max}}
    step={{if @step @step 1}}
    {{on 'input' this.onInput}}
  />
  {{@value}}
{{else}}
  <input
    type="number"
    value={{@value}}
    step={{if @step @step 1}}
    {{on 'input' this.onInput}}
  />
{{/if}}
