chore: add missing aria labels
This commit is contained in:
@@ -128,7 +128,7 @@ const displayLabel = $derived(label ?? controlLabel ?? '');
|
|||||||
? 'bg-paper dark:bg-dark-card shadow-sm border-subtle'
|
? 'bg-paper dark:bg-dark-card shadow-sm border-subtle'
|
||||||
: 'hover:bg-paper/50 dark:hover:bg-dark-card/50',
|
: 'hover:bg-paper/50 dark:hover:bg-dark-card/50',
|
||||||
)}
|
)}
|
||||||
aria-label={controlLabel}
|
aria-label={controlLabel ? `${controlLabel}: ${formattedValue()}` : undefined}
|
||||||
>
|
>
|
||||||
<!-- Label row -->
|
<!-- Label row -->
|
||||||
{#if displayLabel}
|
{#if displayLabel}
|
||||||
|
|||||||
@@ -86,6 +86,7 @@ const fontBName = $derived(comparisonStore.fontB?.name ?? '');
|
|||||||
variant="underline"
|
variant="underline"
|
||||||
size="lg"
|
size="lg"
|
||||||
placeholder="The quick brown fox..."
|
placeholder="The quick brown fox..."
|
||||||
|
aria-label="Preview text"
|
||||||
fullWidth
|
fullWidth
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ import { SearchBar } from '$shared/ui';
|
|||||||
id="font-search"
|
id="font-search"
|
||||||
class="w-full"
|
class="w-full"
|
||||||
placeholder="Typeface Search"
|
placeholder="Typeface Search"
|
||||||
|
aria-label="Search typefaces"
|
||||||
bind:value={filterManager.queryValue}
|
bind:value={filterManager.queryValue}
|
||||||
fullWidth
|
fullWidth
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -65,6 +65,7 @@ function toggleFilters() {
|
|||||||
id="font-search"
|
id="font-search"
|
||||||
class="w-full"
|
class="w-full"
|
||||||
placeholder="Typeface Search"
|
placeholder="Typeface Search"
|
||||||
|
aria-label="Search typefaces"
|
||||||
bind:value={filterManager.queryValue}
|
bind:value={filterManager.queryValue}
|
||||||
fullWidth
|
fullWidth
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user