Combobox

Filter a typed option list to one selected value.

Examples

Installation

Install the package, then import only the components a route uses. Exports are tree-shakable.

Install
pnpm add fractalsvelte
Import
<script lang="ts">
	import { Combobox } from 'fractalsvelte';
</script>

Usage

Usage
<script lang="ts">
	import { Combobox } from 'fractalsvelte';
</script>

<Combobox />

Props

PropTypeDefaultDescription
optionsOption[]-The list of selectable options.
valuestring''The selected value. Supports bind:.
placeholderstring'Search…'Placeholder text shown when empty.