Skip to content

Release 0.11.0

Compare
Choose a tag to compare
@martinpengellyphillips martinpengellyphillips released this 26 May 22:07
· 42 commits to main since this release

Changed

  • Change initialValue behaviour on the Select 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 the initialValue. 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!