{#each source.head as heading }
{@html heading}
{/each}
{#each source.body as row, rowIndex}
{ onRowClick(e, rowIndex); }} on:keydown={(e) => { onRowKeydown(e, rowIndex); }} aria-rowindex={rowIndex + 1} > {#each row as cell, cellIndex}
{@html Number(cell) === 0 ? cell : (cell ? cell : '-')}
{/each}
{/each}
{#if source.foot}
{#each source.foot as cell }
{@html cell}
{/each}
{/if}