on_cell_click(ev, cell_coords)}
ondblclick={() => handle_table_cell_dblclick(cell_coords)}
role="gridcell"
style:width={`${field.field.width_px}px`}
tabindex="-1"
>
{#if cell_data.t === "Text"}
{cell_data.c ?? null_value_text}
{:else if cell_data.t === "Uuid"}
{cell_data.c ?? null_value_text}
{:else}
{/if}
{#if invalid_value}
{@html icon_exclamation_circle}
{/if}