mirror of
https://github.com/rstudio/shiny.git
synced 2026-04-07 03:00:20 -04:00
Remove "experimental feature" tag from renderUI
This commit is contained in:
2
NEWS.md
2
NEWS.md
@@ -33,6 +33,8 @@ This is a significant release for Shiny, with a major new feature that was nearl
|
||||
|
||||
* [#1989](https://github.com/rstudio/shiny/issues/1989): The server side of outputs can now be removed (e.g. `output$plot <- NULL`). This is not usually necessary but it does allow some objects to be garbage collected, which might matter if you are dynamically creating and destroying many outputs. (Thanks, @mmuurr! [#2011](https://github.com/rstudio/shiny/pull/2011))
|
||||
|
||||
* Removed the (ridiculously outdated) "experimental feature" tag from the reference documentation for `renderUI`.
|
||||
|
||||
### Bug fixes
|
||||
|
||||
* Fixed [#1006](https://github.com/rstudio/shiny/issues/1006): Slider inputs sometimes showed too many digits. ([#1956](https://github.com/rstudio/shiny/pull/1956))
|
||||
|
||||
@@ -437,8 +437,7 @@ renderText <- function(expr, env=parent.frame(), quoted=FALSE,
|
||||
|
||||
#' UI Output
|
||||
#'
|
||||
#' \bold{Experimental feature.} Makes a reactive version of a function that
|
||||
#' generates HTML using the Shiny UI library.
|
||||
#' Renders reactive HTML using the Shiny UI library.
|
||||
#'
|
||||
#' The corresponding HTML output tag should be \code{div} and have the CSS class
|
||||
#' name \code{shiny-html-output} (or use \code{\link{uiOutput}}).
|
||||
@@ -452,7 +451,7 @@ renderText <- function(expr, env=parent.frame(), quoted=FALSE,
|
||||
#' call to \code{\link{uiOutput}} when \code{renderUI} is used in an
|
||||
#' interactive R Markdown document.
|
||||
#'
|
||||
#' @seealso conditionalPanel
|
||||
#' @seealso \code{\link{uiOutput}}
|
||||
#' @export
|
||||
#' @examples
|
||||
#' ## Only run examples in interactive R sessions
|
||||
|
||||
@@ -20,8 +20,7 @@ call to \code{\link{uiOutput}} when \code{renderUI} is used in an
|
||||
interactive R Markdown document.}
|
||||
}
|
||||
\description{
|
||||
\bold{Experimental feature.} Makes a reactive version of a function that
|
||||
generates HTML using the Shiny UI library.
|
||||
Renders reactive HTML using the Shiny UI library.
|
||||
}
|
||||
\details{
|
||||
The corresponding HTML output tag should be \code{div} and have the CSS class
|
||||
@@ -48,5 +47,5 @@ shinyApp(ui, server)
|
||||
|
||||
}
|
||||
\seealso{
|
||||
conditionalPanel
|
||||
\code{\link{uiOutput}}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user