@eturnity/eturnity_reusable_components 1.2.29 → 1.2.30

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eturnity/eturnity_reusable_components",
3
- "version": "1.2.29",
3
+ "version": "1.2.30",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
@@ -373,6 +373,8 @@ export default {
373
373
  if (!this.allowNegative) {
374
374
  event = Math.abs(event)
375
375
  }
376
+ event = parseFloat(event)
377
+ // Need to return an integer rather than a string
376
378
  this.$emit('input-change', event)
377
379
  },
378
380
  onEvaluateCode(val) {