Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Type: Package
Package: teal.modules.general
Title: General Modules for 'teal' Applications
Version: 0.5.1.9019
Version: 0.6.0
Date: 2025-12-03
Authors@R: c(
person("Dawid", "Kaledkowski", , "[email protected]", role = c("aut", "cre")),
Expand All @@ -26,7 +26,7 @@ Depends:
ggplot2 (>= 3.5.0),
R (>= 4.1),
shiny (>= 1.8.1),
teal (>= 1.0.0.9003),
teal (>= 1.1.0),
teal.transform (>= 0.7.0)
Imports:
bslib (>= 0.8.0),
Expand Down Expand Up @@ -61,7 +61,7 @@ Imports:
teal.code (>= 0.7.0),
teal.data (>= 0.8.0),
teal.logger (>= 0.4.0),
teal.reporter (>= 0.5.0.9001),
teal.reporter (>= 0.6.0),
teal.widgets (>= 0.5.0),
tern (>= 0.9.7),
tibble (>= 2.0.0),
Expand All @@ -82,9 +82,6 @@ Suggests:
VignetteBuilder:
knitr,
rmarkdown
Remotes:
insightsengineering/teal,
insightsengineering/teal.reporter
Config/Needs/verdepcheck: haleyjeppson/ggmosaic, tidyverse/ggplot2,
rstudio/shiny, insightsengineering/teal,
insightsengineering/teal.transform, mllg/checkmate, tidyverse/dplyr,
Expand Down
3 changes: 2 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# teal.modules.general 0.5.1.9019
# teal.modules.general 0.6.0

### Enhancements

- Modules now return a `teal_report` object that contains the data, code and reporter. All the reporter buttons were removed from the modules' UI.
- Support case when both variables are categorical in association and bivariate plots.
- Improve `tm_missing_data` visualization (#495).

# teal.modules.general 0.5.1

Expand Down
4 changes: 2 additions & 2 deletions tests/testthat/test-shinytest2-tm_outliers.R
Original file line number Diff line number Diff line change
Expand Up @@ -234,8 +234,8 @@ testthat::test_that("e2e - tm_outliers:
app_driver$expect_no_shiny_error()
testthat::expect_true(app_driver$is_visible(app_driver$namespaces(TRUE)$module("percentile_slider")))
testthat::expect_match(
app_driver$get_text(
normalize_math_italic_text(app_driver$namespaces(TRUE)$module("ui_outlier_help"))
normalize_math_italic_text(
app_driver$get_text(app_driver$namespaces(TRUE)$module("ui_outlier_help"))
),
"Percentile(x)<0.01Percentile(x)<0.01 Percentile(x)",
fixed = TRUE
Expand Down