diff --git a/man/example_module.Rd b/man/example_module.Rd index 73fe986c63..e3898b696a 100644 --- a/man/example_module.Rd +++ b/man/example_module.Rd @@ -24,8 +24,8 @@ There are 2 reserved values that have specific behaviors: argument. }} -\item{transformators}{(\code{list} of \code{teal_transform_module}) that will be applied to transform module's data input. -Each transform module UI will appear in the \code{teal} application, unless the \code{custom_ui} attribute is set on the list. +\item{transformators}{(\code{list} of \code{teal_transform_module}) that will be applied to transformator module's data input. +Each transformator module UI will appear in the \code{teal} application, unless the \code{custom_ui} attribute is set on the list. If so, the module developer is responsible to display the UI in the module itself. \code{datanames} of the \code{transformators} will be added to the \code{datanames}.} } diff --git a/man/make_teal_transform_server.Rd b/man/make_teal_transform_server.Rd index f642f94954..ecda077502 100644 --- a/man/make_teal_transform_server.Rd +++ b/man/make_teal_transform_server.Rd @@ -25,7 +25,7 @@ with the value of the respective input (matched by the name) - for example in \examples{ trim_iris <- teal_transform_module( - label = "Simplified interactive transform for iris", + label = "Simplified interactive transformator for iris", datanames = "iris", ui = function(id) { ns <- NS(id) diff --git a/man/module_teal_data.Rd b/man/module_teal_data.Rd index ab4be37c20..4f700e8596 100644 --- a/man/module_teal_data.Rd +++ b/man/module_teal_data.Rd @@ -37,8 +37,8 @@ srv_validate_reactive_teal_data( \item{validate_shiny_silent_error}{(\code{logical}) If \code{TRUE}, then \code{shiny.silent.error} is validated and} -\item{is_transform_failed}{(\code{reactiveValues}) contains \code{logical} flags named after each transform. -Help to determine if any previous transform failed, so that following transformators can be disabled +\item{is_transform_failed}{(\code{reactiveValues}) contains \code{logical} flags named after each transformator. +Help to determine if any previous transformator failed, so that following transformators can be disabled and display a generic failure message.} \item{data}{(\verb{reactive teal_data})} diff --git a/man/module_transform_data.Rd b/man/module_transform_data.Rd index 41bcdc7dc1..8b51fd6f85 100644 --- a/man/module_transform_data.Rd +++ b/man/module_transform_data.Rd @@ -19,8 +19,8 @@ srv_teal_transform_data( \arguments{ \item{id}{(\code{character(1)}) Module id} -\item{transformators}{(\code{list} of \code{teal_transform_module}) that will be applied to transform module's data input. -Each transform module UI will appear in the \code{teal} application, unless the \code{custom_ui} attribute is set on the list. +\item{transformators}{(\code{list} of \code{teal_transform_module}) that will be applied to transformator module's data input. +Each transformator module UI will appear in the \code{teal} application, unless the \code{custom_ui} attribute is set on the list. If so, the module developer is responsible to display the UI in the module itself. \code{datanames} of the \code{transformators} will be added to the \code{datanames}.} @@ -28,8 +28,8 @@ will be added to the \code{datanames}.} \item{modules}{(\code{teal_modules} or \code{teal_module}) For \code{datanames} validation purpose} -\item{is_transform_failed}{(\code{reactiveValues}) contains \code{logical} flags named after each transform. -Help to determine if any previous transform failed, so that following transformators can be disabled +\item{is_transform_failed}{(\code{reactiveValues}) contains \code{logical} flags named after each transformator. +Help to determine if any previous transformator failed, so that following transformators can be disabled and display a generic failure message.} } \value{ diff --git a/man/teal_data_module.Rd b/man/teal_data_module.Rd index 77a7805d4b..683c6d9ef9 100644 --- a/man/teal_data_module.Rd +++ b/man/teal_data_module.Rd @@ -35,7 +35,9 @@ App user will be able to interact and change the data output from the module mul \item{object}{(\code{teal_data_module})} -\item{code}{(\code{character} or \code{language}) code to evaluate. If \code{character}, comments are retained.} +\item{code}{(\code{character}, \code{language} or \code{expression}) code to evaluate. +It is possible to preserve original formatting of the \code{code} by providing a \code{character} or an +\code{expression} being a result of \code{parse(keep.source = TRUE)}.} \item{data}{(\code{teal_data_module}) object} diff --git a/man/teal_modules.Rd b/man/teal_modules.Rd index 78a547b60e..ed0c641da9 100644 --- a/man/teal_modules.Rd +++ b/man/teal_modules.Rd @@ -86,8 +86,8 @@ argument. \item{ui_args}{(named \code{list}) with additional arguments passed on to the UI function.} -\item{transformators}{(\code{list} of \code{teal_transform_module}) that will be applied to transform module's data input. -Each transform module UI will appear in the \code{teal} application, unless the \code{custom_ui} attribute is set on the list. +\item{transformators}{(\code{list} of \code{teal_transform_module}) that will be applied to transformator module's data input. +Each transformator module UI will appear in the \code{teal} application, unless the \code{custom_ui} attribute is set on the list. If so, the module developer is responsible to display the UI in the module itself. \code{datanames} of the \code{transformators} will be added to the \code{datanames}.} @@ -163,7 +163,7 @@ changes the behavior as follows: \itemize{ \item If \code{module(datanames)} is \code{NULL} and the \code{transformators} have defined \code{datanames}, the sidebar will appear showing the \code{transformators}' datasets, instead of being hidden. -\item If \code{module(datanames)} is set to specific values and any \code{transform} has \code{datanames = "all"}, +\item If \code{module(datanames)} is set to specific values and any \code{transformator} has \code{datanames = "all"}, the module may receive extra datasets that could be unnecessary } } diff --git a/man/teal_transform_module.Rd b/man/teal_transform_module.Rd index b4f68825e5..4e4b7e8cea 100644 --- a/man/teal_transform_module.Rd +++ b/man/teal_transform_module.Rd @@ -79,7 +79,7 @@ corresponding \code{input} parameter: \examples{ data_transformators <- list( teal_transform_module( - label = "Static transform for iris", + label = "Static transformator for iris", datanames = "iris", server = function(id, data) { moduleServer(id, function(input, output, session) { @@ -92,7 +92,7 @@ data_transformators <- list( } ), teal_transform_module( - label = "Interactive transform for iris", + label = "Interactive transformator for iris", datanames = "iris", ui = function(id) { ns <- NS(id)