Toggles the visibility of the .vizmodules-input-cell that wraps a given input
(as laid out by organize_inputs()). Hiding the cell rather than just the input
itself lets the surrounding inputs reflow so the panel stays compact instead of
leaving an empty gap, as a plain shinyjs::hide() on the input would.
Examples
if (FALSE) { # \dontrun{
# Call inside a module server:
hide_input(session, c("size", "opacity"))
} # }