ActionButton #
Button component with visual feedback to wait for Promise
.
▽ Code
<script>
import { ActionButton } from '@jill64/svelte-input'
const actionHandler = async () => {
await delay(1500)
$toast.success('Action Complete')
}
</script>
<ActionButton
onClick={actionHandler}
label="Action Button"
let:status
>
+
</ActionButton>
CheckBox #
Labeled checkbox to support bindable indeterminate
value input.
▽ Code
<script>
import { CheckBox } from '@jill64/svelte-input'
</script>
<CheckBox bind:value >
Check Box
</CheckBox>
CheckList #
A checkbox list component that binds inputs structured as
object
.
▽ Code
<script>
import { CheckList } from '@jill64/svelte-input'
</script>
<fieldset>
<CheckList bind:value let:item>
{item}
</CheckList>
</fieldset>
Decimal #
Integer input with control buttons.
▽ Code
<script>
import { Decimal } from '@jill64/svelte-input'
</script>
<fieldset>
<Decimal bind:value min="0" max="10" />
</fieldset>
FileInput #
Quickly configure file input with custom styles applied.
▽ Code
<script>
import { FileInput } from '@jill64/svelte-input'
</script>
<FileInput bind:value >
<div>
Custom File Input
</div>
</FileInput>
<style>
div {
padding: "8px 16px";
background: "#77F";
/* ... */
}
</style>
Radio #
Component that applies input bound to a group to a radio button array.
▽ Code
<script>
import { Radio } from '@jill64/svelte-input'
</script>
<fieldset>
<Radio list={['Alpha', 'Beta', 'Gamma']} bind:value let:item >
{item}
</Radio>
</fieldset>
<style>
fieldset {
display: flex;
flex-direction: column;
gap: 0.5rem;
/* ... */
}
</style>
TextArea #
<textarea>
component that automatically expands input fields
according to input content.
▽ Code
<script>
import { TextArea } from '@jill64/svelte-input'
</script>
<TextArea
bind:value
placeholder="Auto Growing Text Area"
padding="0.5rem"
style="width: 90%; max-height: 300px; border-radius: 0.5rem;"
/>
ToggleSwitch #
Pre-styled
<input type="checkbox">
compatible toggle switch component.
▽ Code
<script>
import { ToggleSwitch } from '@jill64/svelte-input'
</script>
<ToggleSwitch bind:value >
Toggle Switch
</ToggleSwitch>
Select #
Declarative list input with multiple variations quickly creates semantic pull-down menus.
▽ Code
<script>
import { Select } from '@jill64/svelte-input'
</script>
<Select
list={{ One: 'One', Two: 'Two', Three: 'Three', A: 'a', B: 'b', C: 'c' }}
bind:value
style="background: inherit; padding: 0.5rem; font-size: large; color: inherit; border: 1px solid #888;"
/>