Patch Changes
-
#2375
6a03691- Fix the declared type ofclickableandhiddenInputContainer.Both options are derived from their default values, so
clickable: truewas inferred asbooleanandhiddenInputContainer: "body"asstring. That contradicted what each one documents and what both have always accepted at runtime, and TypeScript rejected the documented forms.clickableis nowboolean | string | HTMLElement | (string | HTMLElement)[]andhiddenInputContainerisstring | HTMLElement. Nothing changes at runtime.