Skip to content

Commit

Permalink
[skip vbump] upversion to 0.3.0 (#704)
Browse files Browse the repository at this point in the history
Related with #623
  • Loading branch information
donyunardi authored Mar 5, 2024
1 parent 5285fcc commit c57c2b8
Show file tree
Hide file tree
Showing 13 changed files with 11 additions and 17 deletions.
18 changes: 9 additions & 9 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.2.16.9030
Version: 0.3.0
Date: 2024-03-01
Authors@R: c(
person("Dawid", "Kaledkowski", , "[email protected]", role = c("aut", "cre")),
Expand All @@ -20,15 +20,15 @@ Description: Prebuilt 'shiny' modules containing tools for viewing data,
License: Apache License 2.0
URL: https://insightsengineering.github.io/teal.modules.general/,
https://github.com/insightsengineering/teal.modules.general/
BugReports:
BugReports:
https://github.com/insightsengineering/teal.modules.general/issues
Depends:
ggmosaic (>= 0.3.0),
ggplot2 (>= 3.4.0),
R (>= 3.6),
shiny (>= 1.6.0),
teal (>= 0.14.0.9027),
teal.transform (>= 0.4.0.9011)
teal (>= 0.15.1),
teal.transform (>= 0.5.0)
Imports:
checkmate (>= 2.1.0),
dplyr (>= 1.0.5),
Expand All @@ -43,12 +43,12 @@ Imports:
shinyWidgets (>= 0.5.1),
stats,
stringr (>= 1.4.1),
teal.code (>= 0.4.1.9009),
teal.data (>= 0.3.0.9018),
teal.code (>= 0.5.0),
teal.data (>= 0.5.0),
teal.logger (>= 0.1.1),
teal.reporter (>= 0.2.0),
teal.reporter (>= 0.3.0),
teal.widgets (>= 0.4.0),
tern (>= 0.7.10),
tern (>= 0.9.3),
tibble (>= 2.0.0),
tidyr (>= 0.8.3),
tools,
Expand All @@ -69,7 +69,7 @@ Suggests:
MASS,
nestcolor (>= 0.1.0),
rlang (>= 1.0.0),
rtables (>= 0.5.1),
rtables (>= 0.6.6),
sparkline,
testthat (>= 3.0.4)
VignetteBuilder:
Expand Down
8 changes: 1 addition & 7 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,28 +1,23 @@
# teal.modules.general 0.2.16.9030
# teal.modules.general 0.3.0

### Enhancements

* Updated the package docs and vignettes with the new way of specifying data for `teal::init()`. The `data` argument will accept a `teal_data` object

### Bug fixes

* Outlier labels no longer appear out of bounds in `tm_a_regression`.
* Fixed a bug in `tm_outliers` when changing the selected variable would cause a popup.

### Miscellaneous

* Removed `teal.slice` dependencies.
* Specified minimal version of package dependencies.

# teal.modules.general 0.2.16

### Breaking changes

* Replaced `chunks` with simpler `qenv` class.
* Replaced `datasets` argument containing `FilteredData` with the new arguments `data` (`tdata` object) and `filter_panel_api` (`FilterPanelAPI`).

### Enhancements

* Added `parent_dataname` argument to `tm_variable_browser` and `tm_missing_data` to allow specification of parent dataset for these modules.
* Improved `UI` labels and plot panel title in `tm_g_association`.
* Added inputs `tm_variable_browser` module for text size and plot theme.
Expand All @@ -36,7 +31,6 @@
* Fixed a bug in `tm_variable_browser` when changing filters would reset the selected variable to the first on the list.

### Miscellaneous

* Removed `scda` package dependency from examples.
* Replaced deprecated `ggplot2` functions `..count..`, `..density..` and `..prop..`.
* Version bump on `forcats` dependency.
Expand Down
Binary file modified vignettes/images/app-teal-modules-general.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified vignettes/images/app-using-association-plot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified vignettes/images/app-using-bivariate-plot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified vignettes/images/app-using-cross-table.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified vignettes/images/app-using-data-table.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified vignettes/images/app-using-outliers-module.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified vignettes/images/app-using-regression-plots.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified vignettes/images/app-using-response-plot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified vignettes/images/app-using-scatterplot-matrix.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified vignettes/images/app-using-scatterplot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion vignettes/using-association-plot.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -301,4 +301,4 @@ A simple `shiny::shinyApp()` call will let you run the app. Note that app is onl
shinyApp(app$ui, app$server, options = list(height = 1024, width = 1024))
```

<img src="images/app-teal-modules-general.png" style="display: block; margin: 0px; width: 100%"/>
<img src="images/app-using-association-plot.png" style="display: block; margin: 0px; width: 100%"/>

0 comments on commit c57c2b8

Please sign in to comment.