Added limited documentation to the inputs

This commit is contained in:
2026-02-24 12:36:45 +00:00
parent c025ef8452
commit 976bb3650d
12 changed files with 451 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/numericButtonInput.R
\name{updateNumericButtonInput}
\alias{updateNumericButtonInput}
\title{A numeric input with an action button attached which can be used for clearing
or setting a value on trigger}
\usage{
updateNumericButtonInput(
session,
inputId,
label = NULL,
min = NULL,
max = NULL,
step = NULL,
value = NULL
)
}
\arguments{
\item{session}{The \code{session} object passed to function given to
\code{shinyServer}. Default is \code{getDefaultReactiveDomain()}.}
\item{inputId}{The id of the input object.}
\item{label}{The label to set for the input object.}
\item{min}{Minimum allowed value}
\item{max}{Maximum allowed value}
\item{step}{Interval to use when stepping between min and max}
\item{value}{Initial value.}
}
\description{
A numeric input with an action button attached which can be used for clearing
or setting a value on trigger
}
\seealso{
\code{\link[shiny:numericInput]{shiny::numericInput()}}, \code{\link[shiny:updateNumericInput]{shiny::updateNumericInput()}}
}