Skip to content
Closed
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
1 change: 1 addition & 0 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
- ready_for_review
branches:
- main
- redesign_extraction@main
push:
branches:
- main
Expand Down
1 change: 1 addition & 0 deletions .lintr
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ linters: linters_with_defaults(
line_length_linter = line_length_linter(120),
cyclocomp_linter = NULL,
object_usage_linter = NULL,
pipe_consistency_linter = NULL,
object_name_linter = object_name_linter(
styles = c("snake_case", "symbols"),
regexes = c(ANL = "^ANL_?[0-9A-Za-z_]*$", ADaM = "^r?AD[A-Z]{2,5}_?[0-9A-Za-z_]*$")
Expand Down
14 changes: 9 additions & 5 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ Depends:
R (>= 3.6),
shiny (>= 1.8.1),
teal (>= 1.1.0),
teal.picks (>= 0.1.0),
teal.transform (>= 0.7.0)
Imports:
bslib (>= 0.8.0),
Expand All @@ -46,23 +47,26 @@ Suggests:
logger (>= 0.4.0),
nestcolor (>= 0.1.0),
rmarkdown (>= 2.23),
shinytest2 (>= 0.4.1),
testthat (>= 3.2.3),
withr (>= 3.0.0)
Remotes:
insightsengineering/osprey
insightsengineering/osprey,
insightsengineering/teal.picks
Config/Needs/verdepcheck: insightsengineering/osprey, rstudio/shiny,
insightsengineering/teal, insightsengineering/teal.slice,
insightsengineering/teal.transform, mllg/checkmate, tidyverse/dplyr,
insightsengineering/teal, insightsengineering/teal.picks,
insightsengineering/teal.slice, insightsengineering/teal.transform,
mllg/checkmate, tidyverse/dplyr,
insightsengineering/formatters, tidyverse/ggplot2, r-lib/lifecycle,
daroczig/logger, rstudio/shinyvalidate, insightsengineering/teal.code,
insightsengineering/teal.logger, insightsengineering/teal.reporter,
insightsengineering/teal.widgets, insightsengineering/tern,
tidyverse/tidyr, yihui/knitr, insightsengineering/nestcolor,
rstudio/rmarkdown, insightsengineering/teal.data, r-lib/testthat,
rstudio/rmarkdown, rstudio/shinytest2, insightsengineering/teal.data, r-lib/testthat,
r-lib/withr
Config/Needs/website: insightsengineering/nesttemplate
Encoding: UTF-8
Language: en-US
LazyData: true
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.3
Config/roxygen2/version: 8.0.0
2 changes: 2 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export(tm_g_ae_oview)
export(tm_g_ae_sub)
export(tm_g_butterfly)
export(tm_g_events_term_id)
export(tm_g_events_term_id.picks)
export(tm_g_heat_bygrade)
export(tm_g_patient_profile)
export(tm_g_spiderplot)
Expand All @@ -19,4 +20,5 @@ import(formatters)
import(osprey)
import(shiny)
import(teal)
import(teal.picks)
import(teal.transform)
3 changes: 3 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# teal.osprey 0.4.0.9002

- Migrated modules from `teal.transform` to `teal.picks`.
- Added shinytest2 tests.

# teal.osprey 0.4.0


Expand Down
2 changes: 1 addition & 1 deletion R/teal.osprey.R
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
#' the analysis functions from `osprey` package. See package [website](https://insightsengineering.github.io/osprey/).
#' This enables `teal` app developers to easily create applications making use of the `osprey` analysis functions.
#'
#' @import dplyr osprey shiny teal formatters teal.transform
#' @import dplyr osprey shiny teal formatters teal.picks teal.transform
#' @keywords internal
"_PACKAGE"
Loading
Loading