fix: complete model renderer states and ids

This commit is contained in:
vince 2026-06-18 19:29:30 +02:00
parent fede33e8a7
commit c2fb20b066
11 changed files with 84 additions and 7 deletions

View file

@ -3,15 +3,17 @@
import FooterCell from "./FooterCell.svelte";
let {
id,
items,
compact = false,
}: {
id?: string;
items: UiStatusItem[];
compact?: boolean;
} = $props();
</script>
<section class="status-strip" data-compact={compact}>
<section class="status-strip" data-compact={compact} data-model-id={id}>
{#each items as item (item.id)}
<FooterCell {item} />
{/each}