Release 0.11.0
·
54 commits
to main
since this release
Changed
-
Change
initialValuebehaviour on theSelectcomponent to react to signals
in a more intuitive way. Rather than pass the raw signal in, use the resolved
signal in a tracking context to gain reactivity for theinitialValue. This
is the recommended approach to passing Signals in Solid (and is also more
similar to plain values).<Select initialValue={initialValue}/>
becomes
<Select initialValue={initialValue()}/>
Thanks to rturnq for the tip!