v0.0.33
New features
- Possible to call
ui_teal
andsrv_teal
directly in any application by deliveringdata
argument as areactive
returningteal_data
object. insightsengineering#669 - Introduced
teal_transform_module
to provide a way to interactively modify data delivered toteal_module
'sserver
. insightsengineering#1228 - Introduced a new argument
once = FALSE
inteal_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 adatanames
of theteal_module
. - Datasets which name starts with
.
are ignored whenmodule
'sdatanames
is set as"all"
.
Breaking changes
- Setting
datanames()
ondata
passed to teal application no longer has effect. In order to changeteal_module
's
datanames
one should modifymodule$datanames
. - The
landing_popup_module()
needs to be passed as thelanding_popup
argument ofinit
instead of being passed as a module of themodules
argument ofinit
. teal
no longer re-export%>%
. Please loadlibrary(magrittr)
instead or use|>
frombase
.
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.33