Skip to content

Commit 34dd99e

Browse files
authored
chore(deps): Update shiny 2024-09-27 (#1707)
1 parent dee9a99 commit 34dd99e

File tree

17 files changed

+33
-18
lines changed

17 files changed

+33
-18
lines changed

CHANGELOG.md

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

2424
* Added `.expect_title()` for `Popover` controller (#1683)
2525

26+
* Small improvements to the default pulse busy indicator to better blend with any background. It's also now slightly smaller by default.(#1707)
27+
2628
### Bug fixes
2729

2830
* A few fixes for `ui.Chat()`, including:
@@ -41,6 +43,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4143

4244
* Fixed the `InputCheckbox` and `InputCheckboxGroup` playwright controllers' `.expect_width()` to check the `width` property within the `style` attribute. (#1702)
4345

46+
* Fixed a bug in `ui.conditional_panel()` that would cause the panel to repeatedly show/hide itself when the provided condition did not evaluate to a boolean value. (#1707)
47+
48+
* Fixed a bug with `ui.input_slider()` when used as a range slider that made it impossible to change the slider value when both handles were at the maximum value. (#1707)
49+
50+
4451
## [1.1.0] - 2024-09-03
4552

4653
### New features

scripts/htmlDependencies.R

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ find_root <- function(dir = getwd()) {
1010
if (file.exists(file.path(dir, "setup.cfg"))) {
1111
return(dir)
1212
}
13+
if (file.exists(file.path(dir, "pyproject.toml"))) {
14+
return(dir)
15+
}
1316

1417
new_dir <- dirname(dir)
1518
if (new_dir == dir) {

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!": "Generated by scripts/htmlDependencies.R: do not edit by hand",
33
"package": "shiny",
4-
"version": "1.9.1.9000 (rstudio/shiny@d84aa94762b4ffaf7533a007b6cb92c40f4f29af)"
4+
"version": "1.9.1.9000 (rstudio/shiny@c489fef4ff46fc37eb2a7c447a7108afde7ad124)"
55
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"note!": "Generated by scripts/htmlDependencies.R: do not edit by hand",
3-
"shiny_version": "1.9.1.9000 (rstudio/shiny@d84aa94762b4ffaf7533a007b6cb92c40f4f29af)",
4-
"bslib_version": "0.8.0.9000 (rstudio/bslib@556e932e5275dd2a64bf7544999abdafcf807e30)",
3+
"shiny_version": "1.9.1.9000 (rstudio/shiny@c489fef4ff46fc37eb2a7c447a7108afde7ad124)",
4+
"bslib_version": "0.8.0.9000 (rstudio/bslib@7ff88a1e2a88fc7c6289059dd247ce88512f8231)",
55
"htmltools_version": "0.5.8.9000 (rstudio/htmltools@487aa0bed7313d7597b6edd5810e53cab0061198)",
66
"bootstrap_version": "5.3.1"
77
}

shiny/www/shared/bootstrap/bootstrap.min.css

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/bslib/_version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"note!": "Generated by scripts/htmlDependencies.R: do not edit by hand",
33
"package": "bslib",
4-
"version": "0.8.0.9000 (rstudio/bslib@556e932e5275dd2a64bf7544999abdafcf807e30)"
4+
"version": "0.8.0.9000 (rstudio/bslib@7ff88a1e2a88fc7c6289059dd247ce88512f8231)"
55
}

shiny/www/shared/busy-indicators/busy-indicators.css

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/ionrangeslider/css/ion.rangeSlider.css

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/sass/bslib/components/scss/sidebar.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ $bslib-sidebar-column-sidebar: Min(calc(100% - var(--_padding-icon)), var(--_sid
308308
.bslib-sidebar-layout {
309309
&, &.sidebar-right {
310310
// Remove sidebar borders in mobile view (except always-open, added below)
311-
> .sidebar { border: none }
311+
> .sidebar { border: none; }
312312

313313
// Main area takes up entire layout area to avoid layout shift when
314314
// sidebar is expanded as an overlay.

shiny/www/shared/sass/bslib/components/scss/value_box.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,15 +85,15 @@ $bslib-value-box-horizontal-break-point: 300px !default;
8585
@include bootstrap-heading-font-and-spacing($h6-font-size);
8686
// add a non-breaking space to ensure it's not 0 height
8787
&:empty::after {
88-
content: '\00a0 '
88+
content: '\00a0 ';
8989
}
9090
}
9191

9292
.value-box-value {
9393
@include bootstrap-heading-font-and-spacing($h2-font-size);
9494
// add a non-breaking space to ensure it's not 0 height
9595
&:empty::after {
96-
content: '\00a0 '
96+
content: '\00a0 ';
9797
}
9898
}
9999

0 commit comments

Comments
 (0)