SVAR Core library offers a set of 20+ ready made UI components written in Svelte: form controls, popups, date and time picker, file uploader, and more. All components are lightweight, responsive, fast-performing and available in light and dark skins.
SVAR Core for Svelte is available under MIT license.
To use any of the widgets, simply import the package and include the desired component in your Svelte file:
<script>
import { Button } from "wx-svelte-core";
</script>
<Button>Click me</Button>Typically, you don't need to modify the code. However, if you wish to do so, follow these steps:
- Run
yarnto install dependencies. Note that this project is a monorepo usingyarnworkspaces, so npm will not work - Start the project in development mode with
yarn start
To run the test:
- Start the test examples with:
yarn start:tests
- In a separate console, run the end-to-end tests with:
yarn test:cypress
