Select should have a value prop
In plain Preact you can choose which option of a select element should be selected like this:
<select value="2">
<option value="1">Foo</option>
<option value="2">Bar</option>
</select>
Unless I've missed something, then the Select component in this package only lets you set the selected option by either setting the selectedIndex prop of Select itself or using the selected prop of Select.Item.
I think it would make sense to let Select behave like a regular select in this regard, what do you think?
If I'm correct, this is a current limitation by mdc or does this work with plain html?
Currently selectedIndex prop is an equivalent to value prop
Well selectedIndex takes an index not a value
ah gotcha... sorry was attention was divided back then
Lets keep this for 2.0?