diff --git a/src/lib/components/Table/ColumnsMenu.svelte b/src/lib/components/Table/ColumnsMenu.svelte index 09499d6..0af5957 100644 --- a/src/lib/components/Table/ColumnsMenu.svelte +++ b/src/lib/components/Table/ColumnsMenu.svelte @@ -16,7 +16,6 @@ type="button" class="btn btn-sm variant-filled-primary rounded-full order-last" aria-label="Open menu to hide/show columns" - title="Open menu to hide/show columns" use:popup={popupCombobox}>Columns diff --git a/src/lib/components/Table/TableContent.svelte b/src/lib/components/Table/TableContent.svelte index 49d4875..6c9fd45 100644 --- a/src/lib/components/Table/TableContent.svelte +++ b/src/lib/components/Table/TableContent.svelte @@ -411,7 +411,6 @@ id="{tableId}-searchReset" class="absolute right-3 items-center" aria-label="Clear search" - title="Clear search" on:click|preventDefault={() => { if (serverSide && !sendModel) { throw new Error('Server-side configuration is missing'); @@ -428,7 +427,7 @@ type="submit" id="{tableId}-searchSubmit" class="btn variant-filled-primary" - title="Search" + aria-label="Search" on:click|preventDefault={() => { if (serverSide && !sendModel) { throw new Error('Server-side configuration is missing'); @@ -470,7 +469,7 @@ exportAsCsv(tableId, $exportedData)} >Export as CSV diff --git a/src/lib/components/Table/TableFilter.svelte b/src/lib/components/Table/TableFilter.svelte index a1b3e5e..cf5cc94 100644 --- a/src/lib/components/Table/TableFilter.svelte +++ b/src/lib/components/Table/TableFilter.svelte @@ -241,7 +241,6 @@ use:popup={popupFeatured} id="{popupId}-button" aria-label="Open filter menu for {id} column" - title="Open filter menu for {id} column" > @@ -252,7 +251,6 @@ class="btn variant-filled-primary btn-sm" type="button" aria-label="Clear Filters" - title="Clear Filters" on:click|preventDefault={() => { // Set the defaults when cleared clearFilters(); @@ -271,7 +269,6 @@ valueChangeHandler(e, index)} bind:value={dropdown.formValue} aria-label="Filter value" - title="Filter value" /> {/if} @@ -335,7 +328,6 @@ addFilter(remainingFilters[0].value, undefined); }} aria-label="Add filter" - title="Add filter" >
Add Filter
@@ -344,7 +336,6 @@ class="btn variant-filled-primary btn-sm" type="button" aria-label="Apply filters" - title="Apply filters" on:click|preventDefault={() => { $pageIndex = 0; $filterValue = $filters[id]; diff --git a/src/lib/components/Table/TablePagination.svelte b/src/lib/components/Table/TablePagination.svelte index d29073d..5266d24 100644 --- a/src/lib/components/Table/TablePagination.svelte +++ b/src/lib/components/Table/TablePagination.svelte @@ -64,7 +64,6 @@ @@ -108,7 +105,6 @@ value={$pageIndex + 1} max={$pageCount} aria-label="Current page" - title="Current page" min={1} on:change={handleChange} /> @@ -116,14 +112,12 @@ class="btn btn-sm variant-filled-primary" id="{id}-next" aria-label="Go to next page" - title="Go to next page" on:click|preventDefault={goToNextPage} disabled={goToNextPageDisabled}>