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
19 changes: 15 additions & 4 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,21 @@ Type: Package
Package: teal.picks
Title: Dataset and Variable Picker and Merge Module for 'teal'
Applications
Version: 0.1.0.9244
Date: 2026-05-08
Authors@R:
person("insightsengineering", , , "insightsengineering@example.com", role = c("aut", "cre"))
Version: 0.1.0
Date: 2026-05-07
Authors@R: c(
person("Dawid", "Kaledkowski", , "dawid.kaledkowski@roche.com", role = c("aut", "cre"),
comment = c(ORCID = "0000-0001-9533-457X")),
person("Andre", "Verissimo", , "andre.verissimo@roche.com", role = "aut",
comment = c(ORCID = "0000-0002-2212-339X")),
person("Marcin", "Kosinski", , "marcin.kosinski.mk1@roche.com", role = "aut"),
person("Lluís", "Revilla Sancho", , "lluis.revilla_sancho@roche.com", role = "aut",
comment = c(ORCID = "0000-0001-9747-2570")),
person("Oriol", "Senan", , "oriol.senan@external.roche.com", role = "aut",
comment = c(ORCID = "0000-0002-9621-3371")),
person("Dony", "Unardi", , "unardid@gene.com", role = "rev"),
person("F. Hoffmann-La Roche AG", role = c("cph", "fnd"))
)
Description: Allows users to interactively select datasets, variables, and
values within 'teal' applications using a 'tidyselect'-style
interface. Selected picks can be merged and transformed into
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# teal.picks 0.1.0.9244
# teal.picks 0.1.0

### New Features

Expand Down
1 change: 1 addition & 0 deletions R/module_picks.R
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,7 @@ picks_srv.picks <- function(id, picks, data) {
.pick_ui_fixed <- function(id, selected) {
htmltools::tags$div(
class = "form-group shiny-input-container",
style = "visibility: hidden; position: absolute;",
htmltools::tags$input(
id = id,
disabled = "disabled",
Expand Down
14 changes: 0 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,17 +68,3 @@ Wire `my_picks` into `picks_ui` / `picks_srv` with a reactive `teal_data` object
## Getting help

If you encounter a bug or have a feature request, please file an issue. For questions, discussions, and staying up to date, please use the `teal` channel in the [`pharmaverse` slack workspace](https://pharmaverse.slack.com).

## Stargazers and Forkers

### Stargazers over time

[![Stargazers over time](https://starchart.cc/insightsengineering/teal.picks.svg)](https://starchart.cc/insightsengineering/teal.picks)

### Stargazers

[![Stargazers repo roster for @insightsengineering/teal.picks](http://reporoster.com/stars/insightsengineering/teal.picks)](https://github.com/insightsengineering/teal.picks/stargazers)

### Forkers

[![Forkers repo roster for @insightsengineering/teal.picks](http://reporoster.com/forks/insightsengineering/teal.picks)](https://github.com/insightsengineering/teal.picks/network/members)
3 changes: 2 additions & 1 deletion inst/badge-dropdown/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,12 @@
.badge-dropdown {
overflow-x: auto;
padding-right: 0.5rem;
border: 2px solid transparent;
}

.badge-dropdown:has(~ * .shiny-validation-message),
.badge-dropdown:has(~ * .shiny-output-error) {
border: 2px solid red;
border: 2px solid var(--bs-danger);
}

.badge-dropdown-label,
Expand Down
Loading