@eturnity/eturnity_reusable_components 8.16.9-SLD.0 → 8.16.9-SLD.1
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
@@ -812,6 +812,9 @@
|
|
812
812
|
if (!this.allowNegative) {
|
813
813
|
event = Math.abs(event)
|
814
814
|
}
|
815
|
+
if (this.minNumber && this.minNumber > event) {
|
816
|
+
event = this.minNumber
|
817
|
+
}
|
815
818
|
event = parseFloat(event)
|
816
819
|
// Need to return an integer rather than a string
|
817
820
|
this.$emit('input-change', event)
|