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