diff --git a/src/main/resources/static/js/vue-components.js b/src/main/resources/static/js/vue-components.js index cb34779..db173f3 100644 --- a/src/main/resources/static/js/vue-components.js +++ b/src/main/resources/static/js/vue-components.js @@ -53,6 +53,9 @@ if ( typeof Vue !== 'undefined' ) { }, clearTextOnSelect: { default: false + }, + inputMode:{ + default: 'text' } }, data: function() { @@ -212,6 +215,7 @@ if ( typeof Vue !== 'undefined' ) { v-bind:required="required" v-bind:disabled="disabled" v-bind:readonly="readOnly" + v-bind:inputmode="inputMode" v-bind:class="{ 'is-invalid': ( showInputErrorOnZeroId && ( entityId === 0 || entityId == null ) ) }" autocomplete="off"> @@ -3398,6 +3402,9 @@ if ( typeof Vue !== 'undefined' ) { }, filter : { default : true + }, + inputMode: { + default : 'none' } } }) @@ -3434,6 +3441,9 @@ if ( typeof Vue !== 'undefined' ) { }, received : { default : false + }, + inputMode: { + default : 'none' } } }) @@ -3467,6 +3477,9 @@ if ( typeof Vue !== 'undefined' ) { codeFieldName : { default : 'code' }, + inputMode: { + default : 'none' + } } }); @@ -3503,6 +3516,9 @@ if ( typeof Vue !== 'undefined' ) { }, isSegregated : { default : false + }, + inputMode: { + default : 'none' } } }) @@ -3535,6 +3551,9 @@ if ( typeof Vue !== 'undefined' ) { }, codeFieldName : { default : 'bundleCode' + }, + inputMode: { + default : 'none' } } })