couds / react-bulma-components

React components for Bulma framework
MIT License
1.2k stars 129 forks source link

fix: domRef in ElementProps was missing React.ElementRef #413

Closed KholdStare closed 7 months ago

KholdStare commented 1 year ago

The domRef definition that was there would have a nonsensical type like React.RefObject<"input"> when it should be referring to the actual element like React.RefObject<HTMLInputElement> based on TComponent. This would necessitate doing ugly casts like

ref as unknown as HTMLInputElement