@eturnity/eturnity_reusable_components 6.39.1-qa-3d-6.41.0 → 6.42.0
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": "6.
|
3
|
+
"version": "6.42.0",
|
4
4
|
"private": false,
|
5
5
|
"scripts": {
|
6
6
|
"dev": "vue-cli-service serve",
|
@@ -60,4 +60,4 @@
|
|
60
60
|
"author": "Aaron Enser",
|
61
61
|
"license": "ISC",
|
62
62
|
"homepage": "https://bitbucket.org/eturnitydevs/eturnity_reusable_components#readme"
|
63
|
-
}
|
63
|
+
}
|
@@ -433,10 +433,6 @@ export default {
|
|
433
433
|
labelFontColor: {
|
434
434
|
required: false,
|
435
435
|
default: 'eturnityGrey'
|
436
|
-
},
|
437
|
-
focus:{
|
438
|
-
required: false,
|
439
|
-
default: false
|
440
436
|
}
|
441
437
|
},
|
442
438
|
computed: {
|
@@ -578,7 +574,7 @@ export default {
|
|
578
574
|
}
|
579
575
|
this.isFocused = true
|
580
576
|
this.$nextTick(() => {
|
581
|
-
this.$refs.inputField1.$el.
|
577
|
+
this.$refs.inputField1.$el.select()
|
582
578
|
})
|
583
579
|
this.$emit('input-focus')
|
584
580
|
},
|
@@ -664,17 +660,7 @@ export default {
|
|
664
660
|
})
|
665
661
|
}
|
666
662
|
},
|
667
|
-
mounted(){
|
668
|
-
if(this.focus){
|
669
|
-
this.focusInput()
|
670
|
-
}
|
671
|
-
},
|
672
663
|
watch: {
|
673
|
-
focus(value){
|
674
|
-
if(value){
|
675
|
-
this.focusInput()
|
676
|
-
}
|
677
|
-
},
|
678
664
|
clearInput: function (value) {
|
679
665
|
if (value) {
|
680
666
|
// If the value is typed, then we should clear the textInput on Continue
|