Skip to content

Commit

Permalink
Merge branch 'main' into 76_remove_filtered@main
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikolas Burkoff authored Jul 26, 2022
2 parents e0f98c1 + 5047ae8 commit 4c1b45a
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Type: Package
Package: teal.slice
Title: Filter module for teal applications
Version: 0.1.1.9009
Version: 0.1.1.9011
Date: 2022-06-09
Authors@R: c(
person("Dawid", "Kaledkowski", , "dawid.kaledkowski@roche.com", role = c("aut", "cre")),
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.slice 0.1.1.9009
# teal.slice 0.1.1.9011

* Removed `CDISCFilteredDataset` class and functionality moved to `CDISCFilteredData`.
* Changed constructor of `FilteredData` to not require `TealData` object. See `help(init_filtered_data)` for more details.
Expand Down
4 changes: 2 additions & 2 deletions R/FilterStates.R
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
#' \dontrun{
#' shinyApp(
#' ui = fluidPage(
#' actionButton("clear", span(icon("times"), "Remove all filters")),
#' actionButton("clear", span(icon("xmark"), "Remove all filters")),
#' rf$ui_add_filter_state(id = "add", data = df),
#' rf$ui("states"),
#' verbatimTextOutput("expr"),
Expand Down Expand Up @@ -577,7 +577,7 @@ FilterStates <- R6::R6Class( # nolint
actionLink(
session$ns("remove"),
label = "",
icon = icon("times-circle", lib = "font-awesome"),
icon = icon("circle-xmark", lib = "font-awesome"),
class = "remove pull-right"
)
)
Expand Down
8 changes: 4 additions & 4 deletions R/FilteredData.R
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,7 @@ FilteredData <- R6::R6Class( # nolint
ns("filters_overview_contents")
),
title = "Minimise panel",
tags$span(icon("minus-circle", lib = "font-awesome"))
tags$span(icon("circle-minus", lib = "font-awesome"))
)
)
),
Expand All @@ -627,7 +627,7 @@ FilteredData <- R6::R6Class( # nolint
actionLink(
ns("remove_all_filters"),
"",
icon("times-circle", lib = "font-awesome"),
icon("circle-xmark", lib = "font-awesome"),
title = "Remove active filters",
class = "remove_all pull-right"
),
Expand All @@ -639,7 +639,7 @@ FilteredData <- R6::R6Class( # nolint
ns("filter_active_vars_contents")
),
title = "Minimise panel",
tags$span(icon("minus-circle", lib = "font-awesome"))
tags$span(icon("circle-minus", lib = "font-awesome"))
)
)
),
Expand Down Expand Up @@ -672,7 +672,7 @@ FilteredData <- R6::R6Class( # nolint
class = "remove pull-right",
onclick = sprintf("$('#%s').toggle();", ns("filter_add_vars_contents")),
title = "Minimise panel",
tags$span(icon("minus-circle", lib = "font-awesome"))
tags$span(icon("circle-minus", lib = "font-awesome"))
)
)
),
Expand Down
2 changes: 1 addition & 1 deletion R/FilteredDataset.R
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ FilteredDataset <- R6::R6Class( # nolint
actionLink(
ns("remove_filters"),
label = "",
icon = icon("times-circle", lib = "font-awesome"),
icon = icon("circle-xmark", lib = "font-awesome"),
class = "remove pull-right"
)
)
Expand Down
2 changes: 1 addition & 1 deletion man/init_filter_states.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 4c1b45a

Please sign in to comment.