mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
feat(data-table): make cells slottable
This commit is contained in:
parent
ed377a999b
commit
c0fbd24e2a
2 changed files with 78 additions and 3 deletions
|
@ -185,7 +185,7 @@
|
|||
});
|
||||
}}"
|
||||
>
|
||||
{header.value}
|
||||
<slot name="cell-header" header="{header}">{header.value}</slot>
|
||||
</TableHeader>
|
||||
{/each}
|
||||
</TableRow>
|
||||
|
@ -231,7 +231,7 @@
|
|||
dispatch('click:cell', cell);
|
||||
}}"
|
||||
>
|
||||
{cell.value}
|
||||
<slot name="cell" row="{row}" cell="{cell}">{cell.value}</slot>
|
||||
</TableCell>
|
||||
{/each}
|
||||
</TableRow>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue