svelte-legos
TypeScript icon, indicating that this package has built-in type declarations

0.2.3 • Public • Published

Svelte Legos

Collection of essential Svelte Composition Utilities

🚀 Features

  • 🎪 Interactive docs & demos
  • Fully tree shakeable: Only take what you want, [bundle size]
  • 🦾 Type Strong: Written in TypeScript, with TS Docs
  • 🔋 SSR Friendly
  • 🌎 No bundler required: Usable via CDN
  • 🔩 Flexible: Configurable event filters and targets

🦄 Usage

<script lang="ts">
import { counterStore } from "svelte-legos";

const { counter, inc, dec, set, reset } = counterStore();
</script>

<button on:click={() => inc()}>Increment</button>

{counter}

<button on:click={() => dec()}>Decrement</button>
<script lang="ts">
import { clickOutsideAction } from "svelte-legos";

let hidden = false;

function handleClickOutside() {
	hidden = !hidden;
}
</script>

<div class="modal" use:clickOutsideAction on:clickoutside={handleClickOutside} />

Refer to functions list or documentations for more details.

📦 Install

npm i svelte-legos

Local setup

npm run start:dev

🌸 Thanks

This project is heavily inspired by the following awesome projects.

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i svelte-legos

Weekly Downloads

4,167

Version

0.2.3

License

MIT

Unpacked Size

328 kB

Total Files

561

Last publish

Collaborators

  • anksin1994