mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
20 lines
354 B
Svelte
20 lines
354 B
Svelte
<script>
|
|
/**
|
|
* Set to `true` to select the row
|
|
* @type {boolean} [isSelected=false]
|
|
*/
|
|
export let isSelected = false;
|
|
|
|
// TODO: include ariaLabel, onExpand, isExpanded, isSelected
|
|
</script>
|
|
|
|
<tr
|
|
class:bx--data-table--selected="{isSelected}"
|
|
{...$$restProps}
|
|
on:click
|
|
on:mouseover
|
|
on:mouseenter
|
|
on:mouseleave
|
|
>
|
|
<slot />
|
|
</tr>
|