diff --git a/NEWS.md b/NEWS.md index 35a9d5e5..815c8b09 100644 --- a/NEWS.md +++ b/NEWS.md @@ -3,7 +3,6 @@ This release is a patch to fix an issue preventing the release of Shiny 1.7.0. ## Minor changes - Internal change regarding the `{waiter}` package but no user impact. Thanks @JohnCoene. -- Continue to move away from `shiny:::processDeps` to `htmltools::renderTags()` # bs4Dash 2.0.2 diff --git a/R/dashboardControlbar.R b/R/dashboardControlbar.R index cce98439..aa6e9282 100644 --- a/R/dashboardControlbar.R +++ b/R/dashboardControlbar.R @@ -107,7 +107,7 @@ controlbarItem <- function(title, ..., value = title, icon = NULL) { #' @inheritParams shiny::updateTabsetPanel #' @rdname dashboardControlbar #' @export -updateControlbarMenu <- function (session = getDefaultReactiveDomain(), inputId, selected = NULL) { +updateControlbarMenu <- function (session = shiny::getDefaultReactiveDomain(), inputId, selected = NULL) { shiny::updateTabsetPanel(session = session, inputId, selected = selected) } diff --git a/R/dashboardSidebar.R b/R/dashboardSidebar.R index 0c2178c8..69fc12ee 100644 --- a/R/dashboardSidebar.R +++ b/R/dashboardSidebar.R @@ -725,7 +725,7 @@ bs4SidebarUserPanel <- function(name, image = NULL) { #' ) #' } #' @export -updatebs4TabItems <- function (session = getDefaultReactiveDomain(), inputId, selected = NULL) { +updatebs4TabItems <- function (session = shiny::getDefaultReactiveDomain(), inputId, selected = NULL) { shiny::updateTabsetPanel(session = session, inputId, selected = selected) } diff --git a/man/dashboardControlbar.Rd b/man/dashboardControlbar.Rd index 163643de..d51029d5 100644 --- a/man/dashboardControlbar.Rd +++ b/man/dashboardControlbar.Rd @@ -34,7 +34,7 @@ controlbarMenu( controlbarItem(title, ..., value = title, icon = NULL) updateControlbarMenu( - session = getDefaultReactiveDomain(), + session = shiny::getDefaultReactiveDomain(), inputId, selected = NULL ) diff --git a/man/dashboardSidebar.Rd b/man/dashboardSidebar.Rd index f14c1760..3ab5c30e 100644 --- a/man/dashboardSidebar.Rd +++ b/man/dashboardSidebar.Rd @@ -75,7 +75,7 @@ bs4SidebarHeader(title) bs4SidebarUserPanel(name, image = NULL) updatebs4TabItems( - session = getDefaultReactiveDomain(), + session = shiny::getDefaultReactiveDomain(), inputId, selected = NULL ) @@ -135,7 +135,11 @@ menuSubItem( selected = NULL ) -updateTabItems(session = getDefaultReactiveDomain(), inputId, selected = NULL) +updateTabItems( + session = shiny::getDefaultReactiveDomain(), + inputId, + selected = NULL +) } \arguments{ \item{...}{\link{menuSubItem}.}