rstudio / bslib

Tools for theming Shiny and R Markdown via Bootstrap 3, 4, or 5.
https://rstudio.github.io/bslib/
Other
443 stars 49 forks source link

fix: `toggle_sidebar()` can once again directly close a sidebar #1043

Closed gadenbuie closed 2 months ago

gadenbuie commented 2 months ago

Fixes #1042

When we refactored toggle_sidebar() to use sidebar_open_as_string(), this inadvertently changed the method sent to the sidebar toggle message handler from "close" to "closed".

Since we already do some disambiguation between "close"/"closed" and "open"/"opened" in the JavaScript, I updated the toggle message handler to treat "closed" and "close" as the same message.