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

46
man/numericButtonInput.Rd Normal file
View File

@@ -0,0 +1,46 @@
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/numericButtonInput.R
\name{numericButtonInput}
\alias{numericButtonInput}
\title{A numeric input with an action button attached which can be used for clearing
or setting a value on trigger}
\usage{
numericButtonInput(
inputId,
label,
buttonText = NULL,
buttonIcon = NULL,
min = NULL,
max = NULL,
step = NULL,
value,
...
)
}
\arguments{
\item{inputId}{The \code{input} slot that will be used to access the value.}
\item{label}{Display label for the control, or \code{NULL} for no label.}
\item{buttonText}{The text to display in the action button}
\item{buttonIcon}{An icon to display in the action button}
\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.}
\item{...}{Ignored, included to require named arguments and for future
feature expansion.}
}
\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()}}
}