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,44 @@
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/betterDateRangeInput.R
\name{updateBetterDateRangeInput}
\alias{updateBetterDateRangeInput}
\title{Improved shiny dateRangeInput}
\usage{
updateBetterDateRangeInput(
session,
inputId,
label = NULL,
min = NULL,
max = NULL,
start = NULL,
end = 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}{The minimum allowed date. Either a Date object, or a string in
\code{yyyy-mm-dd} format.}
\item{max}{The maximum allowed date. Either a Date object, or a string in
\code{yyyy-mm-dd} format.}
\item{start}{The initial start date. Either a Date object, or a string in
\code{yyyy-mm-dd} format. If NULL (the default), will use the current
date in the client's time zone.}
\item{end}{The initial end date. Either a Date object, or a string in
\code{yyyy-mm-dd} format. If NULL (the default), will use the current
date in the client's time zone.}
}
\description{
Improved shiny dateRangeInput
}
\seealso{
\code{\link[shiny:dateRangeInput]{shiny::dateRangeInput()}}, \code{\link[shiny:updateDateRangeInput]{shiny::updateDateRangeInput()}}
}