Open
Description
Bug report
Hi,
I just noticed a small, but important issue with Select Primitive.
If you wrap it with a <fieldset disabled></fieldset>
it'll not inherit the disabled attribute. This works like this with every other "form" primitive (radio group, switch, checkbox etc) so I'd also think it should be the same for Select.
Current Behavior
This works:
<Select.Root disabled>
(...)
</Select.Root>
This doesn't:
<fieldset disabled>
<Select.Root>
(...)
</Select.Root>
</fieldset>
Expected behavior
A select root to inherit disabled attribute from parent fieldset.