0.3.0 • Published 6 months ago

svelte-collapsible v0.3.0

Weekly downloads
114
License
MIT
Repository
github
Last release
6 months ago

Svelte Collapsible

A collection of high-level Svelte components designed for expanding and collapsing content. Check out the demos ...

Demo - Accordion

Demo - Basic Card

Demo - Styled Cards

Install

npm install svelte-collapsible

Collapsible Card

A collapsible card is a single, simple component that takes two slots. When a user clicks on the header slot, the body slot expands to open or shut.

<script>
    import { CollapsibleCard } from 'svelte-collapsible'
</script>

<CollapsibleCard>
    <h2 slot='header'>Header</h2>
    <p slot='body'>Body</p>
</CollapsibleCard>

Accordion

The accordion is a collection of collapsible items where at most a single item is expanded at any time. When a new item opens, it simultaneously closes any other open item. The component uses keys on the items to keep track of which one is currently open.

<script>
    import { Accordion, AccordionItem } from 'svelte-collapsible'
</script>

<Accordion>
    <AccordionItem key='a'>
        <h2 slot='header'>Header</h2>
        <p slot='body'>Body</p> 
    </AccordionItem>
    <AccordionItem key='b'>
        <h2 slot='header'>Header</h2>
        <p slot='body'>Body</p> 
    </AccordionItem>
</Accordion>

If you need to know which item is currently in the open state, you can bind to the key prop on the Accordion component. It will be null when all items are closed, or the value of associated key when an item is opened. You can also use this feature to set which item should be open when mounted.

<script>
    let key = 'a'
</script>

<Accordion bind:key>
</Accordion>

If you need control of the selected item, you can use the key prop and the on:change event to manage the state of the component externally.

You can modify the duration and easing (see CSS transition-timing-function for available options) of the collapsible section using component props.

<script>
    const duration = 0.5 // seconds
    const easing = 'linear'
</script>

<Accordion { duration } { easing } />
<CollapsibleCard { duration } { easing } />

Motivation

These elements are designed to be drop-in, ready to go, with JS functionality and some styling built-in. They are built on top of the low-level svelte-collapse action. If you need more control and flexibility, you can use this action directly to design your own collapsible components.

0.3.0

6 months ago

0.2.2

1 year ago

0.2.1

3 years ago

0.2.0

3 years ago

0.1.0

3 years ago

0.1.1

3 years ago

0.0.9

3 years ago

0.0.8

3 years ago

0.0.7

3 years ago

0.0.6

3 years ago

0.0.3

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago