v0.15.0
A lot fixes and new features:
- Suspense improvements:
SuspenseList,useTransition, trigger on read. Update API, and addedreloadand retry capability. Removed need forawaitSuspenseby makingShowandSwitchcontrol flowsSusepnseaware. - Sample all Components. No more fear of nesting Components in JSX expressions. Top level in a Component will always be inert now.
- Support for safe boolean and logical operators. This allows for the same optimization as the
Showcontrol flow for simple inline JSX conditionals like<div>{state.count > 5 && <MyComp />}</div>. - Support for non-curried operator forms. All operators now support an accessor first form as well as the functional curried form. Ex
map(() => state.list, item => item) - Fix issues with spreading over
childrenprops. - Better Type Definitions.