Svelte UX

Collection of Svelte components, actions, stores, and utilities to build hi...

README

Svelte UX


The projects aims to simplify building highly interactive and visual applications. It provides over 200 components, actions, stores, and utils, with many more planned.

The components are built using Tailwind with extensibility and customization in mind through the use of theming, variants, granular class overrides, and slots. A rich design token system is also currently in the works.

See also the companion library LayerChart for a large collection of composable chart components to build a wide range of visualizations.

Contributing


Install dependencies


  1. ```
  2. pnpm i
  3. ```

Run dev server for svelte-ux package


  1. ```
  2. cd packages/svelte-ux
  3. pnpm dev
  4. ```

Run test for svelte-ux package


  1. ```
  2. cd packages/svelte-ux
  3. pnpm test:unit
  4. ```

Run tests for all packages


  1. ```
  2. pnpm -r test:unit
  3. ```

Run a script from the root


  1. ```
  2. pnpm -F svelte-ux dev
  3. ```

Add changeset to include change in changelog and determine next version


  1. ```
  2. pnpm changeset
  3. ```