@processmaker/screen-builder 2.85.9 → 2.85.10
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.
|
@@ -26327,9 +26327,7 @@ const JW = {
|
|
|
26327
26327
|
}
|
|
26328
26328
|
},
|
|
26329
26329
|
currencyValue() {
|
|
26330
|
-
this.
|
|
26331
|
-
this.currencyInput.inputmask.unmaskedvalue().replace(",", ".")
|
|
26332
|
-
), this.$emit("input", this.unformattedValue || 0);
|
|
26330
|
+
this.handleInput();
|
|
26333
26331
|
}
|
|
26334
26332
|
},
|
|
26335
26333
|
methods: {
|
|
@@ -26344,7 +26342,12 @@ const JW = {
|
|
|
26344
26342
|
}).mask(this.currencyInput), this.value && this.currencyInput.inputmask.setValue(this.value);
|
|
26345
26343
|
},
|
|
26346
26344
|
keyup(t) {
|
|
26347
|
-
this.currencyValue !== t.target.value
|
|
26345
|
+
this.currencyValue !== t.target.value ? this.currencyValue = t.target.value : this.handleInput();
|
|
26346
|
+
},
|
|
26347
|
+
handleInput() {
|
|
26348
|
+
this.unformattedValue = parseFloat(
|
|
26349
|
+
this.currencyInput.inputmask.unmaskedvalue().replace(",", ".")
|
|
26350
|
+
), this.$emit("input", this.unformattedValue || 0);
|
|
26348
26351
|
}
|
|
26349
26352
|
},
|
|
26350
26353
|
mounted() {
|