react-bulma-components icon indicating copy to clipboard operation
react-bulma-components copied to clipboard

Form.InputFile is missing name typescript definition

Open moosbruggerj opened this issue 1 year ago • 0 comments

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

  • react-bulma-components: 4.1.0
  • bulma: 0.9.4
  • react: 18.2.0
  • Browser: -

moosbruggerj avatar May 11 '23 11:05 moosbruggerj