You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* chore: code style
* feat!(navbar_options): Introduce `navbar_options()`, deprecate navbar-related options in `navset_bar()`
* feat: Add `underline` to `navbar_options()`
* feat!(page_navbar): Use `navbar_options()`
* docs: Move `navbar_options()` to its own docs page
* chore(page_navbar): Move deprecated arguments to the end
* docs: Update navset examples
* feat: Prevent deprecation warnings from `shiny::navbarPage()`
* refactor: simplify navbar_options()
* chore: use version 2 for internal data
* feat: Make `underline = TRUE` the default
* refactor: consolidate deprecation warning into single message
* tests: update snapshots
* docs: Add news item
* docs: Add a note about `navset_bar()` in the examples page
Fixes#552
* chore: add todo note to remember to remove code when fully deprecated
* chore: Include `...` for future expansion
* refactor: Use attributes on `navbar_options()` to track source
* chore: Apply changes from review
* chore: edit wording in comment
* feat: resolved navbar options equivalent to `navbar_options()`
* chore: Error if `...` includes unused options
Copy file name to clipboardExpand all lines: NEWS.md
+8
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,13 @@
1
1
# bslib (development version)
2
2
3
+
## Breaking changes
4
+
5
+
* The navbar-related style options of `page_navbar()` and `navset_bar()` have been consolidated into a single `navbar_options` argument that pairs with a new `navbar_options()` helper. Using the direct `position`, `bg`, `inverse`, `collapsible`, and `underline` arguments will continue to work with a deprecation message. (#1141)
6
+
7
+
Related to the above change, `navset_bar()` now defaults to using `underline = TRUE` so that both `page_navbar()` and `navset_bar()` use the same set of default `navbar_options()`.
8
+
9
+
## Improvements and bug fixes
10
+
3
11
*`navset_card_pills()`, `navset_card_underline()`, `navset_card_tabs()` fixed to now respect header/footer arguments (@tanho63, #1024)
4
12
5
13
* Fixed a bug in `bs_themer()` (and `bs_theme_preview()`) that caused it to stop applying changes if a Sass variable was `NULL`. (@meztez, #1112)
0 commit comments