1.0.2 • Published 6 years ago
svelte-multivalue-box v1.0.2
svelte-multivalue-box
svelte-multivalue-box gives you ability to select multiple values from a list of choices in a svelte project. The choice from the list of choices can bi searched by typing the input.
Installing svelte-multivalue-box
npm install svelte-multivalue-boxUsing svelte-multivalue-box
<script>
import Box from 'svelte-multivalue-box';
let choices = [// your choices //];
let result;
</script>
<Box subjects={choices} bind:selectedSubjects={result} />You can also set the number of letters to type before the list of choices is visible. Just set a prop threshold with number of letters.
<script>
import Box from 'svelte-multivalue-box';
let choices = [// your choices //];
let result;
</script>
<Box subjects={choices} threshold="2" bind:selectedSubjects={result} />Default is 3
Adding custom placeholder
<script>
import Box from 'svelte-multivalue-box';
let placeholder = "Your placeholder here...";
let choices = [// your choices //];
let result;
</script>
<Box subjects={choices} placeholder={placeholder} bind:selectedSubjects={result} />