Skip to content

Commit

Permalink
Update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
ingalls committed Mar 11, 2024
1 parent c3a2fb0 commit 36e7cfc
Show file tree
Hide file tree
Showing 4 changed files with 409 additions and 327 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@

## Version History

### v3.24.0

- :bug: Update how `TablerRange` `update:modelValue` event is computed
- :arrow_up: Update all deps

### v3.23.1

- :bug: Fix offset from `form-label`
Expand Down
11 changes: 10 additions & 1 deletion components/input/Range.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,16 @@
<div class='row'>
<TablerLabel :label='label' :description='description' :required='required'><slot/></TablerLabel>
<div class='col-12'>
<input :disabled='disabled' v-model='current' type="range" class="form-range" :min="min" :max="max" :step="step">
<input
:disabled='disabled'
:value='modelValue'
@input='event => current = event.target.value'
type='range'
class='form-range'
:min='min'
:max='max'
:step='step'
>
</div>
</div>
</template>
Expand Down
Loading

0 comments on commit 36e7cfc

Please sign in to comment.