UNPKG

trellis

Version:

Agentic State Engine — event-sourced causal graph with branching, decision traces, and realtime sync for AI-native applications

14 lines 699 B
/** * Combobox core — headless autocomplete state machine (ADR 0034 wedge 2). * * Framework-free and DOM-free: fuzzy filtering, keyboard navigation, * selection state, highlight ranges, loading/empty states — all live * here and are verified in Node. Adapters (`trellis/combobox/react|vue|svelte|vanilla`) * bind it per framework. * * @module trellis/combobox */ import type { ComboboxConfig, UseComboboxReturn } from './types.js'; export declare function createComboboxCore(config: ComboboxConfig): UseComboboxReturn; export type { ComboboxActions, ComboboxConfig, ComboboxFilter, ComboboxItem, ComboboxState, UseComboboxReturn, } from './types.js'; //# sourceMappingURL=index.d.ts.map