1.1.291 • Published 3 years ago
@abdelh2o/agnostic-svelte v1.1.291
AgnosticUI Svelte
This is the Svelte version of AgnosticUI.
As earlier versions of Svelte caused binding issues in several of AgnosticUI's components, we've upgraded the library using the latest Svelte-Kit and requires "svelte": "^3.46.0" and later.
Npm install
npm install agnostic-svelteoryarn add agnostic-svelte- In your project's
public/index.htmlensure sure you've included thebundle.css - In your
src/App.svelteimportagnostic-svelte/css/common.min.cssbefore anyagnostic-sveltecomponents; it will look something like:
<script>
import 'agnostic-svelte/css/common.min.css';
import { Button } from 'agnostic-svelte';
</script>
<!-- In your html section you can now use the agnostic-svelte component -->
<Button>Go</Button>A complete kitchen sink example is located in ./examples/src/App.svelte