diff --git a/R/f7-inputs.R b/R/f7-inputs.R index 9178cd51..f422b251 100644 --- a/R/f7-inputs.R +++ b/R/f7-inputs.R @@ -1746,7 +1746,7 @@ createOptions <- function( #' This only works with elements having #' an input HTML tag. #' -#' @param id Form unique id. Using input$ gives +#' @param id Form unique id. Using `input$` gives #' the form result. #' @param ... A list of input elements. #' diff --git a/R/f7Messages.R b/R/f7Messages.R index 73f9e9fc..f976cc49 100644 --- a/R/f7Messages.R +++ b/R/f7Messages.R @@ -118,7 +118,7 @@ updateF7MessageBar <- function(inputId, value = NULL, placeholder = NULL, #' @param avatar Sender avatar URL string. #' @param textHeader Message text header. #' @param textFooter Message text footer. -#' @param image Message image HTML string, e.g. . Can be used instead of imageSrc parameter. +#' @param image Message image HTML string, e.g. ``. Can be used instead of imageSrc parameter. #' @param imageSrc Message image URL string. Can be used instead of image parameter. #' @param cssClass Additional CSS class to set on message HTML element. #' @rdname messages diff --git a/R/f7Popup.R b/R/f7Popup.R index d681ac63..910c2bb9 100644 --- a/R/f7Popup.R +++ b/R/f7Popup.R @@ -5,7 +5,7 @@ #' #' @param ... UI elements for the body of the popup window. #' @param id Popup unique id. Useful if you want to access the popup state. -#' input$ is TRUE when the popup is opened and inversely. +#' `input$` is TRUE when the popup is opened and inversely. #' @param title Title for the popup window, use \code{NULL} for no title. #' @param backdrop Enables Popup backdrop (dark semi transparent layer behind). #' Default to \code{TRUE}. diff --git a/cran-comments.md b/cran-comments.md index eca8b349..fc2f082c 100644 --- a/cran-comments.md +++ b/cran-comments.md @@ -1,10 +1,20 @@ ## Test environments -* RStudio Workbench, R-4.2.2. +* Local R-4.4.0. * `rhub::check_for_cran()`. * win-builder (devel and release). ## R CMD check results There were no ERRORs or WARNINGs or NOTEs. -## Note -This release also fixes a note in https://cran.r-project.org/web/checks/check_results_shinyMobile.html. +## Reverse dependencies + +This release slightly affects `{LFApp}` with 2 deprecation warnings. Authors have been contacted and a pull request has been submited: https://github.com/fpaskali/LFApp/pull/8. + +* checking whether package ‘LFApp’ can be installed ... WARNING + ``` + Found the following significant warnings: + Warning: The `hairlines` argument of `f7Block()` is deprecated as of shinyMobile 2.0.0. + Warning: The `multiCollapse` argument of `f7Accordion()` is deprecated as of shinyMobile + See ‘/Users/davidgranjon/david/RinteRface/shinyMobile/revdep/checks.noindex/LFApp/new/LFApp.Rcheck/00install.out’ for details. + ``` + diff --git a/man/f7Popup.Rd b/man/f7Popup.Rd index d3e8cd4e..5fe17fac 100644 --- a/man/f7Popup.Rd +++ b/man/f7Popup.Rd @@ -24,7 +24,7 @@ f7Popup( \item{...}{UI elements for the body of the popup window.} \item{id}{Popup unique id. Useful if you want to access the popup state. -input$\if{html}{\out{}} is TRUE when the popup is opened and inversely.} +\verb{input$} is TRUE when the popup is opened and inversely.} \item{title}{Title for the popup window, use \code{NULL} for no title.} diff --git a/man/form-inputs.Rd b/man/form-inputs.Rd index 7207bbff..368804e8 100644 --- a/man/form-inputs.Rd +++ b/man/form-inputs.Rd @@ -10,7 +10,7 @@ f7Form(id, ...) updateF7Form(id, data, session = shiny::getDefaultReactiveDomain()) } \arguments{ -\item{id}{Form unique id. Using input$\if{html}{\out{}} gives +\item{id}{Form unique id. Using \verb{input$} gives the form result.} \item{...}{A list of input elements.} diff --git a/man/messages.Rd b/man/messages.Rd index 3b522947..2b8c2462 100644 --- a/man/messages.Rd +++ b/man/messages.Rd @@ -68,7 +68,7 @@ when user is on top/bottom of the messages view.} \item{textFooter}{Message text footer.} -\item{image}{Message image HTML string, e.g. \if{html}{\out{}}. Can be used instead of imageSrc parameter.} +\item{image}{Message image HTML string, e.g. \verb{}. Can be used instead of imageSrc parameter.} \item{imageSrc}{Message image URL string. Can be used instead of image parameter.} diff --git a/vignettes/shinyMobile.Rmd b/vignettes/shinyMobile.Rmd index db930a07..56ab5d08 100644 --- a/vignettes/shinyMobile.Rmd +++ b/vignettes/shinyMobile.Rmd @@ -815,7 +815,7 @@ shinyApp( ### Multi Layout -The layout for __multiple pages__ is covered in a [separate article](https://shinymobile.rinterface.com/articles/multipages). +The layout for __multiple pages__ is covered in a separate article. # Gadgets