admin screenshots

This commit is contained in:
SPRINX0\prochazka
2025-01-31 10:32:52 +01:00
parent cd90b53627
commit cdd1c34bc2
12 changed files with 333 additions and 10 deletions

View File

@@ -9,6 +9,7 @@
headerSlot?: number;
isHighlighted?: Function;
width?: string;
testid?: (row: any) => string;
}
</script>
@@ -173,6 +174,7 @@
<td
class:isHighlighted={col.isHighlighted && col.isHighlighted(row)}
style={col.width ? `width: ${col.width}` : undefined}
data-testid={col.testid ? col.testid(row) : undefined}
>
{#if col.component}
<svelte:component this={col.component} {...col.getProps(row)} />
@@ -237,7 +239,7 @@
table.singleLineRow tbody tr td {
white-space: nowrap;
}
table tbody {
display: block;
overflow-y: scroll;