Skip to content

Commit afa9da3

Browse files
authored
Update bslib and shiny dependencies (#1221)
1 parent 81e3c00 commit afa9da3

File tree

10 files changed

+22
-15
lines changed

10 files changed

+22
-15
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1919

2020
* On Windows, Shiny Express app files are now read in as UTF-8. (#1203)
2121

22+
* Calling `ui.update_selectize()` with `choices` and `selected` now clears the current selection before updating the choices and selected value. (#1221)
23+
24+
* Fixed an issue that could happen with a `ui.card()` or `ui.value_box()` that is rendered dynamically via `@render.ui` when an updated card replaces a card that the user has expanded into full screen mode. Now the full screen state is reset for the new card or value box. If you want to update a card without potentially exiting the full-screen mode, update specific parts of the card using `ui.output_ui()` or `ui.output_text()`. (#1221)
25+
2226
### Other changes
2327

2428
## [0.8.1] - 2024-03-06

shiny/www/shared/_version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"note!": "This file is auto-generated by scripts/htmlDependencies.R",
33
"package": "shiny",
4-
"version": "Github (rstudio/shiny@e2b7f9113866a2f0a98b0cac240320116c5ff56a)"
4+
"version": "Github (rstudio/shiny@c1a1542cfecd31c13b1c6930e53db3a837a0adff)"
55
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"note!": "This file is auto-generated by scripts/htmlDependencies.R",
3-
"shiny_version": "Github (rstudio/shiny@e2b7f9113866a2f0a98b0cac240320116c5ff56a)",
4-
"bslib_version": "Github (rstudio/bslib@8751c7cc1d883f3d04c727e7f0eab89a34f1404c)",
3+
"shiny_version": "Github (rstudio/shiny@c1a1542cfecd31c13b1c6930e53db3a837a0adff)",
4+
"bslib_version": "Github (rstudio/bslib@43d46da7416067575dd32a660219625abae5571e)",
55
"htmltools_version": "CRAN (R 4.3.1)",
66
"bootstrap_version": "5.3.1"
77
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"note!": "This file is auto-generated by scripts/htmlDependencies.R",
33
"package": "bslib",
4-
"version": "Github (rstudio/bslib@8751c7cc1d883f3d04c727e7f0eab89a34f1404c)"
4+
"version": "Github (rstudio/bslib@43d46da7416067575dd32a660219625abae5571e)"
55
}

shiny/www/shared/bslib/components/components.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

shiny/www/shared/bslib/components/components.min.js.map

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

shiny/www/shared/shiny.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9685,6 +9685,9 @@
96859685
if (hasDefinedProperty(data, "url")) {
96869686
var _selectize2 = this._selectize(el);
96879687
_selectize2.clearOptions();
9688+
if (hasDefinedProperty(data, "value")) {
9689+
_selectize2.clear();
9690+
}
96889691
var loaded = false;
96899692
_selectize2.settings.load = function(query, callback) {
96909693
var settings = _selectize2.settings;

shiny/www/shared/shiny.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

shiny/www/shared/shiny.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

shiny/www/shared/shiny.min.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)