couds / react-bulma-components

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

Form.InputFile is missing name typescript definition #420

Open moosbruggerj opened 1 year ago

moosbruggerj commented 1 year ago

Describe the bug the name property is missing in the InputFileProps

To Reproduce Add name to an input file.

import { Form } from "react-bulma-components"

function MyInput() {
  return <Form.InputFile name="" />
}

Produces the following error:

Property 'name' does not exist on type 'IntrinsicAttributes & InputFileProps & SpacingProps & FlexboxProps & HelperProps & ColorProps & ResponsiveProps & TypographyProps & { ...; } & OmitKeys<...>'.

Expected behavior Name should be accepted

Versions