0.0.5 • Published 3 years ago

svelte-zoomable v0.0.5

Weekly downloads
371
License
MIT
Repository
github
Last release
3 years ago

Svelte Zoomable UI

This is a component for providing UI that can zoom into different levels of detail.

More docs coming soon, but you can see an example in this Svelte REPL;

<script>
  let zoomManager;
</script>

<h3><Breadcrumbs {zoomManager} /></h3>
<ZoomableContainer bind:zoomManager>
  {#each data as item}
    <Zoomable id={item.id} title={item.title}>

      ... components that can nest more zoomables
    </Zoomable>
  {/each}
</ZoomableContainer>
0.0.5

3 years ago

0.0.4

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago