Sistent v0.18.6
What's Changed
Bug Fixes
- fix(types): export
PromptReftype from Prompt barrel (#1405)
PromptRef (the imperative handle interface for PromptComponent) was previously defined in source but not re-exported from the package barrel files. Consumers can now import it directly:
import { PromptComponent, type PromptRef } from '@sistent/sistent';
const promptRef = React.useRef<PromptRef>(null);Full Changelog: v0.18.5...v0.18.6