Skip to content

Sistent v0.18.6

Choose a tag to compare

@leecalcote leecalcote released this 14 Apr 17:37
· 17 commits to master since this release
35e351c

What's Changed

Bug Fixes

  • fix(types): export PromptRef type 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