@eturnity/eturnity_reusable_components 7.8.6-EPDM-9865.0 → 7.8.6-EPDM-9779.2
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
package/src/assets/theme.js
CHANGED
@@ -38,7 +38,7 @@
|
|
38
38
|
:value="formatWithCurrency(value)"
|
39
39
|
@blur="onInputBlur($event)"
|
40
40
|
@focus="focusInput()"
|
41
|
-
@keyup.enter="
|
41
|
+
@keyup.enter="onEnterPress"
|
42
42
|
@input="onInput($event)"
|
43
43
|
:disabled="disabled"
|
44
44
|
:isDisabled="disabled"
|
@@ -469,6 +469,10 @@ export default {
|
|
469
469
|
}
|
470
470
|
},
|
471
471
|
methods: {
|
472
|
+
onEnterPress(event){
|
473
|
+
this.$emit('on-enter-click')
|
474
|
+
this.$refs.inputField1.$el.blur()
|
475
|
+
},
|
472
476
|
onChangeHandler(event) {
|
473
477
|
if (isNaN(event) || event === '') {
|
474
478
|
event = this.defaultNumber
|