@eturnity/eturnity_reusable_components 6.43.1 → 6.43.3
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.43.
|
3
|
+
"version": "6.43.3",
|
4
4
|
"private": false,
|
5
5
|
"scripts": {
|
6
6
|
"dev": "vue-cli-service serve",
|
@@ -63,4 +63,4 @@
|
|
63
63
|
"author": "Aaron Enser",
|
64
64
|
"license": "ISC",
|
65
65
|
"homepage": "https://bitbucket.org/eturnitydevs/eturnity_reusable_components#readme"
|
66
|
-
}
|
66
|
+
}
|
@@ -434,7 +434,7 @@ export default {
|
|
434
434
|
required: false,
|
435
435
|
default: 'eturnityGrey'
|
436
436
|
},
|
437
|
-
focus:{
|
437
|
+
focus: {
|
438
438
|
required: false,
|
439
439
|
default: false
|
440
440
|
}
|
@@ -578,7 +578,7 @@ export default {
|
|
578
578
|
}
|
579
579
|
this.isFocused = true
|
580
580
|
this.$nextTick(() => {
|
581
|
-
this.$refs.inputField1.$el.
|
581
|
+
this.$refs.inputField1.$el.select()
|
582
582
|
})
|
583
583
|
this.$emit('input-focus')
|
584
584
|
},
|
@@ -664,14 +664,14 @@ export default {
|
|
664
664
|
})
|
665
665
|
}
|
666
666
|
},
|
667
|
-
mounted(){
|
668
|
-
if(this.focus){
|
667
|
+
mounted() {
|
668
|
+
if (this.focus) {
|
669
669
|
this.focusInput()
|
670
670
|
}
|
671
671
|
},
|
672
672
|
watch: {
|
673
|
-
focus(value){
|
674
|
-
if(value){
|
673
|
+
focus(value) {
|
674
|
+
if (value) {
|
675
675
|
this.focusInput()
|
676
676
|
}
|
677
677
|
},
|