Forward all HTML attributes/props such as required on Select (Plume) components

It would be nice if the Plasmic Select element forwarded along html attributes such as required which is useful for form validation. I believe perhaps it needs to go here in the HiddenSelect component from react-aria? https://github.com/plasmicapp/plasmic/blob/4192925c0aeaeb2a76ade16b321fdd6c9c7ec9b7/packages/react-web/src/plume/select/select.tsx#L325

Hmm it looks like <HiddenSelect/> is intended for auto-complete but not form validation; it doesn’t even render a <select/> if the collection is bigger than 300… :thinking_face:

oh ya, I see, they don’t even have a way to forward that through, only give access to selectProps which is predefined. That is a bummer.

Do you think plasmic might be able to just use an input type="hidden" for this purpose instead??