Skip to content

dropzone@6.3.3

Choose a tag to compare

@github-actions github-actions released this 16 Sep 16:58
· 5 commits to main since this release
0a9ef62

Patch Changes

  • #2375 6a03691 - Fix the declared type of clickable and hiddenInputContainer.

    Both options are derived from their default values, so clickable: true was inferred as boolean and hiddenInputContainer: "body" as string. That contradicted what each one documents and what both have always accepted at runtime, and TypeScript rejected the documented forms.

    clickable is now boolean | string | HTMLElement | (string | HTMLElement)[] and hiddenInputContainer is string | HTMLElement. Nothing changes at runtime.