mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
Closes #1326 * feat: support item.disabled key for `Dropdown`, `MultiSelect`, `ComboBox` * Run "yarn build:docs" * test: assert disabled property * docs: add "Disabled items" examples
36 lines
841 B
Svelte
36 lines
841 B
Svelte
<script>
|
|
/** Set to `true` to enable the active state */
|
|
export let active = false;
|
|
|
|
/** Set to `true` to enable the highlighted state */
|
|
export let highlighted = false;
|
|
|
|
/** Set to `true` to disable the menu item */
|
|
export let disabled = false;
|
|
|
|
let ref = null;
|
|
|
|
$: isTruncated = ref?.offsetWidth < ref?.scrollWidth;
|
|
$: title = isTruncated ? ref?.innerText : undefined;
|
|
</script>
|
|
|
|
<div
|
|
role="option"
|
|
class:bx--list-box__menu-item="{true}"
|
|
class:bx--list-box__menu-item--active="{active}"
|
|
class:bx--list-box__menu-item--highlighted="{highlighted}"
|
|
aria-selected="{active}"
|
|
disabled="{disabled ? true : undefined}"
|
|
{...$$restProps}
|
|
on:click
|
|
on:mouseenter
|
|
on:mouseleave
|
|
>
|
|
<div
|
|
bind:this="{ref}"
|
|
title="{title}"
|
|
class:bx--list-box__menu-item__option="{true}"
|
|
>
|
|
<slot />
|
|
</div>
|
|
</div>
|