debounce(e.currentTarget.value, (v) => { search = v; })} oninput={(e) => debounce(e.currentTarget.value, (v) => { search = v; })} />
{#each table.getHeaderGroups() as headerGroup (headerGroup.id)}
{#each headerGroup.headers as header (header.id)}
{#if !header.isPlaceholder}
{/if}
{/each}
{/each}
{#each table.getRowModel().rows as row (row.id)}
{#each row.getVisibleCells() as cell (cell.id)}
{/each}
{:else}
No players found.
{/each}
(pagination = { pageSize: +e, pageIndex: 0 })}>
{pagination.pageSize}
5
10
25
50
100
200
table.previousPage()} disabled={!table.getCanPreviousPage()}>Previous
table.nextPage()} disabled={!table.getCanNextPage()}>Next