mirror of
https://github.com/rstudio/shiny.git
synced 2026-01-09 15:08:04 -05:00
* First pass at a proper state machine for managing output progress state
* `yarn build` (GitHub Actions)
* Add useBusyIndicators(), spinnerOptions(), and pulseOptions()
* Bring in new spinner defaults
* Use an actual div instead of a pseudo-element since chromium can't be trusted to show them when animated
* Revert "Use an actual div instead of a pseudo-element since chromium can't be trusted to show them when animated"
This reverts commit 6167c1dfd7.
* Embed animation inside svg (to avoid Chromium bug). Consolidate options into a singular busyIndicatorOptions()
* Add to pkgdown reference
* `devtools::document()` (GitHub Actions)
* `yarn build` (GitHub Actions)
* Bump version
* `yarn build` (GitHub Actions)
* Sync package version (GitHub Actions)
* Apply suggestions from code review
Co-authored-by: Garrick Aden-Buie <garrick@adenbuie.com>
* Update snapshots
* `devtools::document()` (GitHub Actions)
* Address feedback
* Bring in more spinner type options
* fix use of fs
* Code review
* `devtools::document()` (GitHub Actions)
* Sync package version (GitHub Actions)
* Update snapshots
* Fix comments
* Make snapshot consistent cross-platform
* Fix namespace issue
* Reduce specificity of position relative
* Skip snapshot on windows; update news
* Whoops
* Scope spinner customizations to parent element by default
* Update snapshots
* Reorder spinner types
* Set a private random seed in tests
* Better id naming
---------
Co-authored-by: cpsievert <cpsievert@users.noreply.github.com>
Co-authored-by: Garrick Aden-Buie <garrick@adenbuie.com>
228 lines
6.1 KiB
YAML
228 lines
6.1 KiB
YAML
# NOTE: The main Shiny site, https://shiny.rstudio.com/, is not a pkgdown site.
|
|
# However, as part of the build process for that site
|
|
# (rstudio/shiny-dev-center), we do use pkgdown to generate the function
|
|
# reference index pages for each release. This file configures the look of
|
|
# those pages for releases from 1.4 onward. Prior to 1.4, staticdocs from
|
|
# https://github.com/r-lib/pkgdown/releases/tag/old was used and
|
|
# inst/staticdocs/index.r was its configuration.
|
|
template:
|
|
# NOTE: These templates live in shiny-dev-center
|
|
path: _pkgdown_templates
|
|
reference:
|
|
- title: UI Layout
|
|
desc: Functions for laying out the user interface for your application.
|
|
contents:
|
|
- absolutePanel
|
|
- bootstrapPage
|
|
- busyIndicatorOptions
|
|
- column
|
|
- conditionalPanel
|
|
- fillPage
|
|
- fillRow
|
|
- fixedPage
|
|
- fluidPage
|
|
- helpText
|
|
- icon
|
|
- navbarPage
|
|
- navlistPanel
|
|
- sidebarLayout
|
|
- tabPanel
|
|
- tabsetPanel
|
|
- titlePanel
|
|
- inputPanel
|
|
- flowLayout
|
|
- splitLayout
|
|
- useBusyIndicators
|
|
- verticalLayout
|
|
- wellPanel
|
|
- withMathJax
|
|
- title: UI Inputs
|
|
desc: Functions for creating user interface elements that prompt the user for input values or interaction.
|
|
contents:
|
|
- actionButton
|
|
- checkboxGroupInput
|
|
- checkboxInput
|
|
- dateInput
|
|
- dateRangeInput
|
|
- fileInput
|
|
- numericInput
|
|
- radioButtons
|
|
- selectInput
|
|
- varSelectInput
|
|
- sliderInput
|
|
- submitButton
|
|
- textInput
|
|
- textAreaInput
|
|
- passwordInput
|
|
- updateActionButton
|
|
- updateCheckboxGroupInput
|
|
- updateCheckboxInput
|
|
- updateDateInput
|
|
- updateDateRangeInput
|
|
- updateNumericInput
|
|
- updateRadioButtons
|
|
- updateSelectInput
|
|
- updateSliderInput
|
|
- updateTabsetPanel
|
|
- insertTab
|
|
- showTab
|
|
- updateTextInput
|
|
- updateTextAreaInput
|
|
- updateQueryString
|
|
- getQueryString
|
|
- title: UI Outputs
|
|
desc: Functions for creating user interface elements that, in conjunction with rendering functions, display different kinds of output from your application.
|
|
contents:
|
|
- htmlOutput
|
|
- plotOutput
|
|
- outputOptions
|
|
- textOutput
|
|
- downloadButton
|
|
- Progress
|
|
- withProgress
|
|
- modalDialog
|
|
- urlModal
|
|
- showModal
|
|
- showNotification
|
|
- title: Interface builder functions
|
|
desc: A sub-library for writing HTML using R functions. These functions form the foundation on which the higher level user interface functions are built, and can also be used in your Shiny UI to provide custom HTML, CSS, and JavaScript.
|
|
contents:
|
|
- builder
|
|
- HTML
|
|
- include
|
|
- singleton
|
|
- tagList
|
|
- tagAppendAttributes
|
|
- tagAppendChild
|
|
- validateCssUnit
|
|
- withTags
|
|
- htmlTemplate
|
|
- bootstrapLib
|
|
- suppressDependencies
|
|
- insertUI
|
|
- markdown
|
|
- title: Rendering functions
|
|
desc: Functions that you use in your application's server side code, assigning them to outputs that appear in your user interface.
|
|
contents:
|
|
- renderPlot
|
|
- renderCachedPlot
|
|
- renderPrint
|
|
- renderDataTable
|
|
- renderImage
|
|
- renderTable
|
|
- renderUI
|
|
- downloadHandler
|
|
- createRenderFunction
|
|
- title: Reactive programming
|
|
desc: A sub-library that provides reactive programming facilities for R.
|
|
contents:
|
|
- reactive
|
|
- observe
|
|
- observeEvent
|
|
- reactiveVal
|
|
- reactiveValues
|
|
- bindCache
|
|
- bindEvent
|
|
- ExtendedTask
|
|
- reactiveValuesToList
|
|
- is.reactivevalues
|
|
- isolate
|
|
- invalidateLater
|
|
- debounce
|
|
- reactlog
|
|
- reactiveFileReader
|
|
- reactivePoll
|
|
- reactiveTimer
|
|
- domains
|
|
- freezeReactiveValue
|
|
- title: Running
|
|
desc: Functions that are used to run or stop Shiny applications.
|
|
contents:
|
|
- runApp
|
|
- runGadget
|
|
- runExample
|
|
- runGadget
|
|
- runUrl
|
|
- stopApp
|
|
- viewer
|
|
- isRunning
|
|
- loadSupport
|
|
- title: Bookmarking state
|
|
desc: Functions that are used for bookmarking and restoring state.
|
|
contents:
|
|
- bookmarkButton
|
|
- enableBookmarking
|
|
- setBookmarkExclude
|
|
- showBookmarkUrlModal
|
|
- onBookmark
|
|
- title: Extending Shiny
|
|
desc: Functions that are intended to be called by third-party packages that extend Shiny.
|
|
contents:
|
|
- createWebDependency
|
|
- resourcePaths
|
|
- registerInputHandler
|
|
- removeInputHandler
|
|
- markRenderFunction
|
|
- title: Utility functions
|
|
desc: Miscellaneous utilities that may be useful to advanced users or when extending Shiny.
|
|
contents:
|
|
- devmode
|
|
- shinyAppTemplate
|
|
- req
|
|
- isTruthy
|
|
- validate
|
|
- session
|
|
- shinyOptions
|
|
- safeError
|
|
- onFlush
|
|
- restoreInput
|
|
- applyInputHandlers
|
|
- parseQueryString
|
|
- getCurrentOutputInfo
|
|
- plotPNG
|
|
- sizeGrowthRatio
|
|
- exportTestValues
|
|
- setSerializer
|
|
- snapshotExclude
|
|
- snapshotPreprocessInput
|
|
- snapshotPreprocessOutput
|
|
- repeatable
|
|
- serverInfo
|
|
- onStop
|
|
- httpResponse
|
|
- key_missing
|
|
- title: Plot interaction
|
|
desc: Functions related to interactive plots
|
|
contents:
|
|
- brushedPoints
|
|
- brushOpts
|
|
- clickOpts
|
|
- title: Modules
|
|
desc: Functions for modularizing Shiny apps
|
|
contents:
|
|
- NS
|
|
- moduleServer
|
|
- callModule
|
|
- title: Embedding
|
|
desc: Functions that are intended for third-party packages that embed Shiny applications.
|
|
contents:
|
|
- shinyApp
|
|
- maskReactiveContext
|
|
- title: Testing
|
|
desc: Functions intended for testing of Shiny components
|
|
contents:
|
|
- runTests
|
|
- testServer
|
|
- MockShinySession
|
|
- title: Superseded
|
|
desc: Functions that have been `r lifecycle::badge("superseded")`
|
|
contents:
|
|
- markRenderFunction
|
|
- shinyUI
|
|
- shinyServer
|
|
- exprToFunction
|
|
# This section is silently dropped by pkgdown https://github.com/r-lib/pkgdown/pull/1783
|
|
- title: internal
|
|
contents:
|
|
- shiny-package
|