mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 10:21:05 +00:00
19 lines
351 B
Svelte
19 lines
351 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>
|