Release 0.11.0
martinpengellyphillips
released this
26 May 22:07
·
42 commits
to main
since this release
Changed
-
Change
initialValue
behaviour on theSelect
component 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!