mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
67 lines
1.5 KiB
Svelte
67 lines
1.5 KiB
Svelte
<script>
|
|
/**
|
|
* Specify the title of the accordion item heading
|
|
* Alternatively, use the named slot "title" (e.g. <div slot="title">...</div>)
|
|
* @type {string} [title="title"]
|
|
*/
|
|
export let title = "title";
|
|
|
|
/**
|
|
* Set to `true` to open the first accordion item
|
|
* @type {boolean} [open=false]
|
|
*/
|
|
export let open = false;
|
|
|
|
/**
|
|
* Specify the ARIA label for the accordion item chevron icon
|
|
* @type {string} [iconDescription="Expand/Collapse"]
|
|
*/
|
|
export let iconDescription = "Expand/Collapse";
|
|
|
|
import ChevronRight16 from "carbon-icons-svelte/lib/ChevronRight16";
|
|
|
|
$: animation = undefined;
|
|
</script>
|
|
|
|
<li
|
|
class:bx--accordion__item="{true}"
|
|
class:bx--accordion__item--active="{open}"
|
|
class="bx--accordion__item--${animation}"
|
|
{...$$restProps}
|
|
on:animationend
|
|
on:animationend="{() => {
|
|
animation = undefined;
|
|
}}"
|
|
>
|
|
<button
|
|
type="button"
|
|
class:bx--accordion__heading="{true}"
|
|
title="{iconDescription}"
|
|
aria-expanded="{open}"
|
|
on:click
|
|
on:click="{() => {
|
|
open = !open;
|
|
animation = open ? 'expanding' : 'collapsing';
|
|
}}"
|
|
on:mouseover
|
|
on:mouseenter
|
|
on:mouseleave
|
|
on:keydown
|
|
on:keydown="{({ key }) => {
|
|
if (open && key === 'Escape') {
|
|
open = false;
|
|
}
|
|
}}"
|
|
>
|
|
<ChevronRight16
|
|
class="bx--accordion__arrow"
|
|
aria-label="{iconDescription}"
|
|
/>
|
|
<div class="bx--accordion__title">
|
|
<slot name="title">{title}</slot>
|
|
</div>
|
|
</button>
|
|
<div class="bx--accordion__content">
|
|
<slot />
|
|
</div>
|
|
</li>
|