Problems with select in UXP

I’m running into two problems/issues.

  • Is there no way to make an option disabled in a select? I’ve tried the disabled attribute and it seems to be a no-op.

  • Multiple selections don’t really work. I.e., I’m using

    <select value={['several', 'items', 'in', 'the', 'options']} multiple={true}> ...
    

and that doesn’t really do anything.

In fact, you have to use the multiple={true} to make even single selection work properly. Don’t know if that’s a React problem or a UXP problem.

Any hints or tricks here? @kerrishotts?