From 2f19f093cb3b16da78a3e13fdb40b44f3a5ff586 Mon Sep 17 00:00:00 2001 From: PAU ROVIRA ROSALENY Date: Tue, 28 Jan 2025 06:49:39 +0000 Subject: [PATCH] feat: #8258 added hover and description to uppercase button --- src/components/common/VnInput.vue | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/src/components/common/VnInput.vue b/src/components/common/VnInput.vue index e921d8e1f..13902d271 100644 --- a/src/components/common/VnInput.vue +++ b/src/components/common/VnInput.vue @@ -174,7 +174,11 @@ const handleUppercase = () => { v-if="!$attrs.disabled && !($attrs.readonly) && $props.uppercase" @click="handleUppercase" class="uppercase-icon" - /> + > + + {{ t('Convert to uppercase') }} + + @@ -187,13 +191,26 @@ const handleUppercase = () => { + en: inputMin: Must be more than {value} maxLength: The value exceeds {value} characters inputMax: Must be less than {value} + es: inputMin: Debe ser mayor a {value} maxLength: El valor excede los {value} carácteres inputMax: Debe ser menor a {value} + Convert to uppercase: Convertir a mayúsculas \ No newline at end of file