adjust accessibility

This commit is contained in:
Pete Matsyburka
2026-06-25 15:26:52 +03:00
parent b183db5b80
commit 721172c980
7 changed files with 43 additions and 2 deletions
@@ -141,6 +141,7 @@
<img
v-if="modelValue || computedPreviousValue"
:src="attachmentsIndex[modelValue || computedPreviousValue].url"
:alt="field.name || t('initials')"
class="mx-auto bg-white border border-base-300 rounded max-h-44"
>
<div class="relative">
@@ -156,6 +157,8 @@
<canvas
v-show="!modelValue && !computedPreviousValue"
ref="canvas"
role="img"
:aria-label="t('initials_drawing_area')"
class="bg-white border border-base-300 rounded-2xl w-full draw-canvas"
/>
</div>
@@ -165,6 +168,7 @@
ref="textInput"
class="base-input !text-2xl w-full mt-6 text-center"
:required="field.required && !isInitialsStarted"
:aria-label="field.name || t('initials')"
:placeholder="`${t('type_initial_here')}...`"
type="text"
@focus="$emit('focus')"