Documentation
Having standard API reference documentation would be helpful. ( Documentation-Based-Coding ) Having only examples is not an ideal way to understand what options and features are available for someone who is not familiar with the component. One must go through all examples, understand each, and then cull various parts into something that resembles an API reference doc.
For example, trying to determine how to use the SolidSelect component with options formated as [{id:2,name:'test1'}] is not documented and this is a very basic feature of a select box. The component looks great but examples much too convoluted to understand how to accomplish this basic function.
If you want to use it with your custom object format, have a look at the Format (options) example. Lets assume you wanna display the 'name' field, you may have something like this:
const format = (value) => (<div>{value.name}</div>);
And the selected item value will be the full object (name + id), Information for wherever you need to process it.
Nonetheless, yeah, I'm in too : A little advanced documentation would be great
Seriously though, examples (Not using Types by the way) are not very helpful except for basic use. At this point it's more frustrating to try and piece what you're doing here together than it is to just write my own select that does what I need it do