diff --git a/NEWS.md b/NEWS.md index 413a5cd..c6e93a3 100644 --- a/NEWS.md +++ b/NEWS.md @@ -5,6 +5,9 @@ Shiny 1.7.0. Thanks @wch. ## Minor change - Internal change regarding the `{waiter}` package but no user impact. Thanks @JohnCoene. +## Bug fix +- Fix #150: Warning when using controlbarMenu. + # shinydashboardPlus 2.0.2 - Simple patch to fix wrong .Rbuildignore [rule](https://github.com/DivadNojnarg/outstanding-shiny-ui/issues/52). diff --git a/R/dashboardControlbar.R b/R/dashboardControlbar.R index 77f9fcb..af37e82 100644 --- a/R/dashboardControlbar.R +++ b/R/dashboardControlbar.R @@ -223,8 +223,7 @@ controlbarMenu <- function(..., id = NULL, selected = NULL) { ..., id = id, selected = selected, - type = "tabs", - position = NULL + type = "tabs" ) # remove parent div causing CSS margin issues diff --git a/docs/news/index.html b/docs/news/index.html index ee2ad55..a38b79a 100644 --- a/docs/news/index.html +++ b/docs/news/index.html @@ -171,6 +171,13 @@
shiny::navlistPanel()
in dashboardControlbar()
not behaving as expected.userBox()
is not working. Introduced in 2.0.0.setShadow()
, setPulse()
, setShake()
and setZoom()
, since they are contained in shinyEffects
+setShadow()
, setPulse()
, setShake()
and setZoom()
, since they are contained in shinyEffects
new “left_menu” argument in the dashboardHeaderPlus()
to include elements in the left part of the navbar. (In addition to what you can already do in the right part with shinydashboard)
new dropdownBlock()
to include shiny input elements in a navbar left menu (optimized for all screen sizes)
new “fixed” argument to the navbar (dashboardHeaderPlus()
). If TRUE, the navbar is fixed-top. (static-top by default)
new setZoom()
function (similar as setShadow()
)
new setZoom()
function (similar as setShadow()
)
new setPulse()
function
new setShake()
function
add “enable_preloader” and “loading_duration” to dashboardPagePlus()
(custom preloader)
add a “width” argument to the rightSidebar()
(set to 230 pixels by default) to improve customization.
new function setShadow()
to set shadow and hover effects on any elements
new function setShadow()
to set shadow and hover effects on any elements
add an “active” argument to rightSidebarTabContent()
: see #4
add a “sidebar_background” argument to dashboardPagePlus()
new verticalProgress()
bars!