Skip to content

v0.0.31

Compare
Choose a tag to compare
@walkowif walkowif released this 10 Sep 11:32
· 6 commits to main since this release

New features

  • Possible to call ui_teal and srv_teal directly in any application by delivering data argument as a reactive returning teal_data object. insightsengineering#669
  • Introduced teal_transform_module to provide a way to interactively modify data delivered to teal_module's server. insightsengineering#1228
  • Introduced a new argument once = FALSE in teal_data_module to possibly reload data during a run time.
  • Possibility to download lockfile to restore app session for reproducibility. insightsengineering#479
  • Introduced a function set_datanames() to change a datanames of the teal_module.
  • Datasets which name starts with . are ignored when module's datanames is set as "all".

Breaking changes

  • Setting datanames() on data passed to teal application no longer has effect. In order to change teal_module's
    datanames one should modify module$datanames.
  • The landing_popup_module() needs to be passed as the landing_popup argument of init instead of being passed as a module of the modules argument of init.
  • teal no longer re-export %>%. Please load library(magrittr) instead or use |> from base.

Enhancement

  • Enhanced a system of data validation and a display of error messages.
  • Easier way of to call javascript events by setting $(document).ready(function() { ... }). insightsengineering#1114
  • Provided progress bar for modules loading and data filtering during teal app startup.
  • Filter mapping display has a separate icon in the tab.

Full Changelog: v0.0.29...v0.0.31