v0.15.0
A lot fixes and new features:
- Suspense improvements:
SuspenseList
,useTransition
, trigger on read. Update API, and addedreload
and retry capability. Removed need forawaitSuspense
by makingShow
andSwitch
control flowsSusepnse
aware. - 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
Show
control 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
children
props. - Better Type Definitions.