Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

298 reset button #859

Merged
merged 101 commits into from
Jul 21, 2023
Merged

298 reset button #859

merged 101 commits into from
Jul 21, 2023

Commits on Mar 9, 2023

  1. fix after teal.slice

    gogonzo committed Mar 9, 2023
    Configuration menu
    Copy the full SHA
    68bb345 View commit details
    Browse the repository at this point in the history

Commits on Mar 16, 2023

  1. Configuration menu
    Copy the full SHA
    89626c5 View commit details
    Browse the repository at this point in the history

Commits on Apr 14, 2023

  1. 187 new api@filter panel refactor@main (#825)

    Introduces changes necessary to handle the new Filter Panel API coming
    from [this
    PR](insightsengineering/teal.slice#222).
    
    ---------
    
    Co-authored-by: Dawid Kałędkowski <dawid.kaledkowski@gmail.com>
    Co-authored-by: Andrew Bates <andrew.bates@atorusresearch.com>
    Co-authored-by: asbates <asbates@users.noreply.github.com>
    Co-authored-by: chlebowa <chlebowa@users.noreply.github.com>
    Co-authored-by: 27856297+dependabot-preview[bot]@users.noreply.github.com <27856297+dependabot-preview[bot]@users.noreply.github.com>
    6 people committed Apr 14, 2023
    Configuration menu
    Copy the full SHA
    beb3b0a View commit details
    Browse the repository at this point in the history

Commits on May 3, 2023

  1. Configuration menu
    Copy the full SHA
    3c44f70 View commit details
    Browse the repository at this point in the history

Commits on Jun 2, 2023

  1. Configuration menu
    Copy the full SHA
    7ff713d View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2023

  1. Configuration menu
    Copy the full SHA
    cfbc3d3 View commit details
    Browse the repository at this point in the history

Commits on Jun 12, 2023

  1. reduce the amount of spelling issues / WORDLIST (#843)

    The follow-up after
    insightsengineering/coredev-tasks#235
    
    The current spelling-check output is below. `omics` is a part of
    `multi-omics`. `pre-selected` is treated as spelling mistake either if
    it's written `pre-selected` or `preselected`. `themer` and `theming` are
    a part of subject-language about themes. `tabsetted` does not seem to be
    an English word, even though TabSet class became of common word around
    developers.
    
    ```{R}
    spelling::spell_check_package()
      WORD               FOUND IN
    Forkers            README.md:75,85,87
    funder             teal-package.Rd:32
    Hoffmann           teal-package.Rd:32
    omics              README.md:29
                       including-mae-data-in-teal.Rmd:13
    preselected        teal.Rmd:101
    programmatically   NEWS.md:118
    repo               README.md:9,15,83,87
    reproducibility    init.Rd:24,25
                       srv_teal_with_splash.Rd:23,24
                       ui_teal_with_splash.Rd:25,26
                       NEWS.md:71,91,282
                       README.md:44
                       adding-support-for-reporting.Rmd:238
                       including-adam-data-in-teal.Rmd:16,104
                       including-general-data-in-teal.Rmd:80
                       including-mae-data-in-teal.Rmd:41
                       preprocessing-data.Rmd:87
                       teal.Rmd:75
    tabsetted          ui_teal.Rd:43
    themer             teal-bs-themes.Rmd:188,222
    theming            teal-bs-themes.Rmd:39,108
    TLG                README.md:53
    UI                 init.Rd:5
                       srv_teal.Rd:103
                       ui_nested_tabs.Rd:8,35,42
                       ui_tabs_with_filters.Rd:25
                       ui_teal.Rd:5,19,20,35,38,41,43,46
                       ui_teal_with_splash.Rd:5
                       NEWS.md:118,194,210,313,317,366
                       creating-custom-modules.Rmd:47,49,52
                       teal-options.Rmd:89
                       teal.Rmd:59
    UIs                ui_tabs_with_filters.Rd:5
    uncheck            teal-bs-themes.Rmd:175
    UX                 teal-options.Rmd:89
    
    ```
    m7pr committed Jun 12, 2023
    Configuration menu
    Copy the full SHA
    61e5c23 View commit details
    Browse the repository at this point in the history

Commits on Jun 16, 2023

  1. Configuration menu
    Copy the full SHA
    fde15a4 View commit details
    Browse the repository at this point in the history
  2. Merge fde15a4 into c51c0b0

    gogonzo committed Jun 16, 2023
    Configuration menu
    Copy the full SHA
    c312dee View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ede832f View commit details
    Browse the repository at this point in the history

Commits on Jun 21, 2023

  1. 330 [Feature Request]: Option to not show module_add (#852)

    this fixes insightsengineering/teal.slice#330
    
    Here in this PR , parameter module_add is being added to
    teal::teal_filters() which passes parameter value to
    teal.slice::filter_settings() function.
    
    Testing code:
    ```
    options(teal.log_level = "TRACE", teal.show_js_log = TRUE)
    # options("teal.bs_theme" = bslib::bs_theme(version = 5))
    # options(shiny.trace = TRUE)
    # todo: change groupCheckbox to include locked (not able to interact with)
    #       change groupCheckbox to have some colors (instead of grey)
    # todo: available filter should present information about selected values (for example tooltip)
    
    
    library(shiny)
    library(scda)
    library(scda.2022)
    library(teal.data)
    library(teal.transform)
    library(teal.modules.general)
    pkgload::load_all()
    
    funny_module <- function (label = "Filter states", datanames = "all") {
      checkmate::assert_string(label)
      module(
        label = label,
        filters = datanames,
        ui = function(id, ...) {
          ns <- NS(id)
          div(
            h2("The following filter calls are generated:"),
            verbatimTextOutput(ns("filter_states")),
            verbatimTextOutput(ns("filter_calls")),
            actionButton(ns("reset"), "reset_to_default")
          )
        },
        server = function(input, output, session, data, filter_panel_api) {
          checkmate::assert_class(data, "tdata")
          observeEvent(input$reset, set_filter_state(filter_panel_api, default_filters))
          output$filter_states <-  renderPrint({
            logger::log_trace("rendering text1")
            filter_panel_api %>% get_filter_state()
          })
          output$filter_calls <- renderText({
            logger::log_trace("rendering text2")
            attr(data, "code")()
          })
        }
      )
    }
    
    ADSL <- synthetic_cdisc_data("latest")$adsl
    ADSL$empty <- NA
    ADSL$logical1 <- FALSE
    ADSL$logical <- sample(c(TRUE, FALSE), size = nrow(ADSL), replace = TRUE)
    ADSL$numeric <- rnorm(nrow(ADSL))
    ADSL$categorical2 <- sample(letters[1:10], size = nrow(ADSL), replace = TRUE)
    ADSL$categorical <- sample(letters[1:3], size = nrow(ADSL), replace = TRUE, prob = c(.1, .3, .6))
    ADSL$date <- Sys.Date() + seq_len(nrow(ADSL))
    ADSL$date2 <- rep(Sys.Date() + 1:3, length.out = nrow(ADSL))
    ADSL$datetime <- Sys.time() + seq_len(nrow(ADSL)) * 3600 * 12
    ADSL$datetime2 <- rep(Sys.time() + 1:3 * 43200, length.out = nrow(ADSL))
    
    ADSL$numeric[sample(1:nrow(ADSL), size = 10)] <- NA
    ADSL$numeric[sample(1:nrow(ADSL), size = 10)] <- Inf
    ADSL$logical[sample(1:nrow(ADSL), size = 10)] <- NA
    ADSL$date[sample(1:nrow(ADSL), size = 10)] <- NA
    ADSL$datetime[sample(1:nrow(ADSL), size = 10)] <- NA
    ADSL$categorical2[sample(1:nrow(ADSL), size = 10)] <- NA
    ADSL$categorical[sample(1:nrow(ADSL), size = 10)] <- NA
    
    ADTTE <- synthetic_cdisc_data("latest")$adtte
    ADRS <- synthetic_cdisc_data("latest")$adrs
    
    ADTTE$numeric <- rnorm(nrow(ADTTE))
    ADTTE$numeric[sample(1:nrow(ADTTE), size = 10,)] <- NA
    
    default_filters <- teal::teal_filters(
      filter_var(dataname = "ADSL", varname = "categorical", selected = c("a", "b"), id = "categorical", locked = TRUE),
      filter_var(dataname = "ADSL", varname = "categorical2", selected = c("a", "b"), locked = TRUE),
      filter_var(dataname = "ADSL", varname = "numeric", selected = c(0, 140), keep_na = TRUE, keep_inf = TRUE),
      filter_var(dataname = "ADSL", varname = "logical", selected = c(T), keep_na = TRUE, keep_inf = TRUE),
      filter_var(dataname = "ADSL", varname = "datetime"),
      filter_var(dataname = "ADSL", varname = "date2"),
      filter_expr(id = "AF", title = "ADULT FEMALE", dataname = "ADSL", expr = "SEX %in% 'F' & AGE >= 18L"),
      filter_expr(id = "SE", title = "Safety-Evaluable", dataname = "ADSL", expr = "SAFFL == 'Y'"),
      filter_var(dataname = "ADSL", varname = "COUNTRY", selected = c("USA", "CAN", "JPN"), fixed = TRUE),
      count_type = "all",
      include_varnames = list(ADSL = c("SEX", "categorical", "categorical2", "numeric", "logical", "date", "datetime", "date2", "datetime2", "COUNTRY")),
      exclude_varnames = list(
        ADTTE = intersect(colnames(ADSL), colnames(ADTTE)),
        ADRS = colnames(ADSL)
      ),
      mapping = list(
        `table` = "categorical"
      ),
      module_specific = TRUE,
      module_add = FALSE  # set it to true for seeing filter add module
    
    )
    
    app <- init(
      data = cdisc_data(
        cdisc_dataset("ADSL", ADSL),
        cdisc_dataset("ADTTE", ADTTE),
        cdisc_dataset("ADRS", ADRS)
      ),
      modules = modules(
        tm_data_table(
          "table",
          variables_selected = list(ADSL = c("STUDYID", "USUBJID", "SUBJID", "SITEID", "AGE", "SEX")),
          dt_args = list(caption = "ADSL Table Caption")
        ),
        modules(
          label = "tab1",
          funny_module("funny", datanames = NULL),
          funny_module("funny2", datanames = "ADTTE") # will limit datanames to ADTTE and ADSL (parent)
        )
      ),
      filter = default_filters
    )
    
    
    runApp(app)
    ```
    
    Co-authored-by: kartikeya <kartikeya.kirar@unicle.life>
    kartikeyakirar and kartikeya committed Jun 21, 2023
    Configuration menu
    Copy the full SHA
    139a723 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cf43277 View commit details
    Browse the repository at this point in the history

Commits on Jun 27, 2023

  1. lift function slices_field from teal.slice

    Aleksander Chlebowski committed Jun 27, 2023
    Configuration menu
    Copy the full SHA
    f23a746 View commit details
    Browse the repository at this point in the history

Commits on Jun 28, 2023

  1. Configuration menu
    Copy the full SHA
    bc6f2c0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cc102fc View commit details
    Browse the repository at this point in the history

Commits on Jun 29, 2023

  1. Configuration menu
    Copy the full SHA
    0c4aa11 View commit details
    Browse the repository at this point in the history
  2. simplify to understand

    Aleksander Chlebowski committed Jun 29, 2023
    Configuration menu
    Copy the full SHA
    34c6df8 View commit details
    Browse the repository at this point in the history
  3. insert snapshot manager module into filter manager module

    Aleksander Chlebowski committed Jun 29, 2023
    Configuration menu
    Copy the full SHA
    2c51fb8 View commit details
    Browse the repository at this point in the history

Commits on Jun 30, 2023

  1. improve mapping_matrix

    Aleksander Chlebowski committed Jun 30, 2023
    Configuration menu
    Copy the full SHA
    14befc9 View commit details
    Browse the repository at this point in the history

Commits on Jul 2, 2023

  1. add shanpshot manager

    Aleksander Chlebowski committed Jul 2, 2023
    Configuration menu
    Copy the full SHA
    ee49652 View commit details
    Browse the repository at this point in the history
  2. add styling for snapshot manager

    Aleksander Chlebowski committed Jul 2, 2023
    Configuration menu
    Copy the full SHA
    b7f3254 View commit details
    Browse the repository at this point in the history

Commits on Jul 4, 2023

  1. restore dependency between of mapping_matrix on slices_map and make s…

    …lices_map reactive
    Aleksander Chlebowski committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    b938da9 View commit details
    Browse the repository at this point in the history
  2. add helper functions for transforming mapping

    Aleksander Chlebowski committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    7ee6cf4 View commit details
    Browse the repository at this point in the history
  3. properly add mapping to stored snapshots

    Aleksander Chlebowski committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    9afe4d2 View commit details
    Browse the repository at this point in the history
  4. bug fixes

    Aleksander Chlebowski committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    c43d0c9 View commit details
    Browse the repository at this point in the history
  5. fix bug in refreshing slices_map

    Aleksander Chlebowski committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    7985cfd View commit details
    Browse the repository at this point in the history
  6. properly set filter state when restoring snapshot

    Aleksander Chlebowski committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    b43a492 View commit details
    Browse the repository at this point in the history
  7. highlight code repetition

    Aleksander Chlebowski committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    2700cc7 View commit details
    Browse the repository at this point in the history

Commits on Jul 5, 2023

  1. fix mapping matrix

    Aleksander Chlebowski committed Jul 5, 2023
    Configuration menu
    Copy the full SHA
    77c55b3 View commit details
    Browse the repository at this point in the history
  2. remove slices_map object from filter manager

    Aleksander Chlebowski committed Jul 5, 2023
    Configuration menu
    Copy the full SHA
    c636138 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7f60f0d View commit details
    Browse the repository at this point in the history
  4. Merge 7f60f0d into 603e041

    gogonzo committed Jul 5, 2023
    Configuration menu
    Copy the full SHA
    e3b3a42 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    00570d9 View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2023

  1. Merge branch 'filter_panel_refactor@main' into 298_reset_button@filte…

    …r_panel_refactor@main
    Aleksander Chlebowski committed Jul 6, 2023
    Configuration menu
    Copy the full SHA
    f46e4bf View commit details
    Browse the repository at this point in the history
  2. post merge fix

    Aleksander Chlebowski committed Jul 6, 2023
    Configuration menu
    Copy the full SHA
    b25a072 View commit details
    Browse the repository at this point in the history
  3. mofe setdiff_teal_slices to teal.slice

    Aleksander Chlebowski committed Jul 6, 2023
    Configuration menu
    Copy the full SHA
    3ebd43f View commit details
    Browse the repository at this point in the history
  4. hide initial state from snapshot list

    Aleksander Chlebowski committed Jul 6, 2023
    Configuration menu
    Copy the full SHA
    63126f9 View commit details
    Browse the repository at this point in the history
  5. patch bug in restoring filter state

    Aleksander Chlebowski committed Jul 6, 2023
    Configuration menu
    Copy the full SHA
    3f41145 View commit details
    Browse the repository at this point in the history
  6. amend documentation

    Aleksander Chlebowski committed Jul 6, 2023
    Configuration menu
    Copy the full SHA
    8a4b8eb View commit details
    Browse the repository at this point in the history

Commits on Jul 10, 2023

  1. don't check names in mapping_matrix

    Aleksander Chlebowski committed Jul 10, 2023
    Configuration menu
    Copy the full SHA
    70d4c8e View commit details
    Browse the repository at this point in the history
  2. remove slices_field

    Aleksander Chlebowski committed Jul 10, 2023
    Configuration menu
    Copy the full SHA
    e4c84ea View commit details
    Browse the repository at this point in the history
  3. block dataset level snapshot manager in module-specific mode

    Aleksander Chlebowski committed Jul 10, 2023
    Configuration menu
    Copy the full SHA
    d3978fe View commit details
    Browse the repository at this point in the history
  4. move helper function to teal.slice

    Aleksander Chlebowski committed Jul 10, 2023
    Configuration menu
    Copy the full SHA
    19c01b3 View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2023

  1. lift internal functions from teal.slice

    Aleksander Chlebowski committed Jul 11, 2023
    Configuration menu
    Copy the full SHA
    d065973 View commit details
    Browse the repository at this point in the history
  2. reopen filter manager after adding snapshot

    Aleksander Chlebowski committed Jul 11, 2023
    Configuration menu
    Copy the full SHA
    d847841 View commit details
    Browse the repository at this point in the history
  3. adapt to change of method in FilteredData

    Aleksander Chlebowski committed Jul 11, 2023
    Configuration menu
    Copy the full SHA
    b4498d8 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b8e69e3 View commit details
    Browse the repository at this point in the history
  5. postmerge fixes

    gogonzo committed Jul 11, 2023
    Configuration menu
    Copy the full SHA
    6365d6d View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    116ec2f View commit details
    Browse the repository at this point in the history
  7. Merge branch 'filter_panel_refactor@main' into 298_reset_button@filte…

    …r_panel_refactor@main
    gogonzo committed Jul 11, 2023
    Configuration menu
    Copy the full SHA
    59eea14 View commit details
    Browse the repository at this point in the history
  8. restrore helper functions

    Aleksander Chlebowski committed Jul 11, 2023
    Configuration menu
    Copy the full SHA
    bad5853 View commit details
    Browse the repository at this point in the history
  9. Merge branch '298_reset_button@filter_panel_refactor@main' of github.…

    …com:insightsengineering/teal into 298_reset_button@filter_panel_refactor@main
    Aleksander Chlebowski committed Jul 11, 2023
    Configuration menu
    Copy the full SHA
    720e749 View commit details
    Browse the repository at this point in the history
  10. remove comments

    Aleksander Chlebowski committed Jul 11, 2023
    Configuration menu
    Copy the full SHA
    326effe View commit details
    Browse the repository at this point in the history

Commits on Jul 12, 2023

  1. change default file name

    Aleksander Chlebowski committed Jul 12, 2023
    Configuration menu
    Copy the full SHA
    db9d905 View commit details
    Browse the repository at this point in the history
  2. close modal after restoring snapshot

    Aleksander Chlebowski committed Jul 12, 2023
    Configuration menu
    Copy the full SHA
    e9ba1c5 View commit details
    Browse the repository at this point in the history

Commits on Jul 17, 2023

  1. Merge branch 'main' into 298_reset_button@filter_panel_refactor@main

    # Conflicts:
    #	R/module_filter_manager.R
    #	R/module_nested_tabs.R
    #	R/module_teal.R
    #	R/teal_slices.R
    #	R/zzz.R
    #	inst/js/sidebar.js
    #	man/filter_manager_module_srv.Rd
    #	man/module_filter_manager_modal.Rd
    #	man/teal_slices.Rd
    #	man/ui_nested_tabs.Rd
    #	tests/testthat/test-init.R
    Aleksander Chlebowski committed Jul 17, 2023
    Configuration menu
    Copy the full SHA
    26daab6 View commit details
    Browse the repository at this point in the history
  2. Merge 26daab6 into 70e900b

    chlebowa committed Jul 17, 2023
    Configuration menu
    Copy the full SHA
    438651e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8566158 View commit details
    Browse the repository at this point in the history
  4. Merge branch 'main' into 298_reset_button@filter_panel_refactor@main

    Aleksander Chlebowski committed Jul 17, 2023
    Configuration menu
    Copy the full SHA
    12de0db View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    9e827a5 View commit details
    Browse the repository at this point in the history

Commits on Jul 18, 2023

  1. solve overdue merge conflicts

    Aleksander Chlebowski committed Jul 18, 2023
    Configuration menu
    Copy the full SHA
    1371421 View commit details
    Browse the repository at this point in the history
  2. do not reinstantiate observers

    Aleksander Chlebowski committed Jul 18, 2023
    Configuration menu
    Copy the full SHA
    7488c16 View commit details
    Browse the repository at this point in the history
  3. Merge 7488c16 into 0c2d514

    chlebowa committed Jul 18, 2023
    Configuration menu
    Copy the full SHA
    0c6085d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    be316e2 View commit details
    Browse the repository at this point in the history
  5. make snapshot module internal

    Aleksander Chlebowski committed Jul 18, 2023
    Configuration menu
    Copy the full SHA
    e0667fb View commit details
    Browse the repository at this point in the history
  6. fix spelling

    Aleksander Chlebowski committed Jul 18, 2023
    Configuration menu
    Copy the full SHA
    f94b589 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    f63d6de View commit details
    Browse the repository at this point in the history
  8. accept solution with tracking observers to avoid duplication

    Aleksander Chlebowski committed Jul 18, 2023
    Configuration menu
    Copy the full SHA
    af358be View commit details
    Browse the repository at this point in the history
  9. Merge branch '298_reset_button@filter_panel_refactor@main' of github.…

    …com:insightsengineering/teal into 298_reset_button@filter_panel_refactor@main
    Aleksander Chlebowski committed Jul 18, 2023
    Configuration menu
    Copy the full SHA
    00adaec View commit details
    Browse the repository at this point in the history
  10. remove commented code

    Aleksander Chlebowski committed Jul 18, 2023
    Configuration menu
    Copy the full SHA
    49d525f View commit details
    Browse the repository at this point in the history
  11. add tests for snapshot manager module

    Aleksander Chlebowski committed Jul 18, 2023
    Configuration menu
    Copy the full SHA
    1498efb View commit details
    Browse the repository at this point in the history
  12. modify tests for filter manager

    Aleksander Chlebowski committed Jul 18, 2023
    Configuration menu
    Copy the full SHA
    69dc6de View commit details
    Browse the repository at this point in the history
  13. Merge 69dc6de into 0c2d514

    chlebowa committed Jul 18, 2023
    Configuration menu
    Copy the full SHA
    74bd5c0 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    8662b00 View commit details
    Browse the repository at this point in the history
  15. trigger

    Aleksander Chlebowski committed Jul 18, 2023
    Configuration menu
    Copy the full SHA
    ac4d02b View commit details
    Browse the repository at this point in the history

Commits on Jul 19, 2023

  1. modify unit tests for snapshot manager

    Aleksander Chlebowski committed Jul 19, 2023
    Configuration menu
    Copy the full SHA
    723ccc1 View commit details
    Browse the repository at this point in the history
  2. update documentation

    Aleksander Chlebowski committed Jul 19, 2023
    Configuration menu
    Copy the full SHA
    cc536b4 View commit details
    Browse the repository at this point in the history
  3. amend NEWS

    Aleksander Chlebowski committed Jul 19, 2023
    Configuration menu
    Copy the full SHA
    a000af8 View commit details
    Browse the repository at this point in the history
  4. display mapping matrix as checkmarks

    Aleksander Chlebowski committed Jul 19, 2023
    Configuration menu
    Copy the full SHA
    5e638ea View commit details
    Browse the repository at this point in the history
  5. Merge branch 'main' into 298_reset_button@filter_panel_refactor@main

    Signed-off-by: Aleksander Chlebowski <114988527+chlebowa@users.noreply.github.com>
    chlebowa committed Jul 19, 2023
    Configuration menu
    Copy the full SHA
    4afd9ed View commit details
    Browse the repository at this point in the history

Commits on Jul 20, 2023

  1. adapt filter manager to run in global application

    Aleksander Chlebowski committed Jul 20, 2023
    Configuration menu
    Copy the full SHA
    db2416a View commit details
    Browse the repository at this point in the history
  2. Merge db2416a into bc37145

    chlebowa committed Jul 20, 2023
    Configuration menu
    Copy the full SHA
    d9b75bb View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e04267c View commit details
    Browse the repository at this point in the history
  4. filter_manager button UI

    gogonzo committed Jul 20, 2023
    Configuration menu
    Copy the full SHA
    58e98e1 View commit details
    Browse the repository at this point in the history
  5. change handling of mappin in teal_slices

    Aleksander Chlebowski committed Jul 20, 2023
    Configuration menu
    Copy the full SHA
    75d357e View commit details
    Browse the repository at this point in the history
  6. improve handling of mapping matrix in filter manager

    Aleksander Chlebowski committed Jul 20, 2023
    Configuration menu
    Copy the full SHA
    66fc368 View commit details
    Browse the repository at this point in the history
  7. always display mapping matrix

    Aleksander Chlebowski committed Jul 20, 2023
    Configuration menu
    Copy the full SHA
    441d72f View commit details
    Browse the repository at this point in the history
  8. amend documentation

    Aleksander Chlebowski committed Jul 20, 2023
    Configuration menu
    Copy the full SHA
    c1a80f0 View commit details
    Browse the repository at this point in the history
  9. remove activation of snapshot manager in FiteredData

    Aleksander Chlebowski committed Jul 20, 2023
    Configuration menu
    Copy the full SHA
    bf5a519 View commit details
    Browse the repository at this point in the history
  10. improve handling mapping in teal_slices funciton

    Aleksander Chlebowski committed Jul 20, 2023
    Configuration menu
    Copy the full SHA
    1fab7c2 View commit details
    Browse the repository at this point in the history
  11. only set global filters in global mode

    Aleksander Chlebowski committed Jul 20, 2023
    Configuration menu
    Copy the full SHA
    accf8b3 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    9ed7a66 View commit details
    Browse the repository at this point in the history
  13. adjust logic in teal_slices

    Aleksander Chlebowski committed Jul 20, 2023
    Configuration menu
    Copy the full SHA
    144778a View commit details
    Browse the repository at this point in the history
  14. amend documentation

    Aleksander Chlebowski committed Jul 20, 2023
    Configuration menu
    Copy the full SHA
    67bd2f7 View commit details
    Browse the repository at this point in the history
  15. add assertion in srv_tabs_with_filters

    Aleksander Chlebowski committed Jul 20, 2023
    Configuration menu
    Copy the full SHA
    7f656eb View commit details
    Browse the repository at this point in the history
  16. adjust unit tests

    Aleksander Chlebowski committed Jul 20, 2023
    Configuration menu
    Copy the full SHA
    abb02f8 View commit details
    Browse the repository at this point in the history
  17. Merge branch '298_reset_button@filter_panel_refactor@main' of github.…

    …com:insightsengineering/teal into 298_reset_button@filter_panel_refactor@main
    Aleksander Chlebowski committed Jul 20, 2023
    Configuration menu
    Copy the full SHA
    b0b4ad7 View commit details
    Browse the repository at this point in the history
  18. Merge b0b4ad7 into bc37145

    chlebowa committed Jul 20, 2023
    Configuration menu
    Copy the full SHA
    5453ac4 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    13d5a24 View commit details
    Browse the repository at this point in the history
  20. trigger

    Aleksander Chlebowski committed Jul 20, 2023
    Configuration menu
    Copy the full SHA
    1ff6a0d View commit details
    Browse the repository at this point in the history
  21. linter

    Aleksander Chlebowski committed Jul 20, 2023
    Configuration menu
    Copy the full SHA
    46746f0 View commit details
    Browse the repository at this point in the history