This commit is contained in:
Andreas Gammelgaard Damsbo 2025-04-24 12:53:47 +02:00
commit ab780591b1
No known key found for this signature in database
8 changed files with 1072 additions and 127 deletions

View file

@ -18,6 +18,8 @@ export(clean_sep)
export(columnSelectInput)
export(contrast_text)
export(create_baseline)
export(create_column_server)
export(create_column_ui)
export(create_log_tics)
export(create_overview_datagrid)
export(create_plot)
@ -45,6 +47,7 @@ export(format_writer)
export(get_fun_options)
export(get_label)
export(get_plot_options)
export(get_var_icon)
export(getfun)
export(gg_theme_export)
export(gg_theme_shiny)
@ -67,11 +70,13 @@ export(is_valid_token)
export(launch_FreesearchR)
export(limit_log)
export(line_break)
export(list_allowed_operations)
export(m_redcap_readServer)
export(m_redcap_readUI)
export(merge_expression)
export(merge_long)
export(missing_fraction)
export(modal_create_column)
export(modal_cut_variable)
export(modal_update_factor)
export(modify_qmd)
@ -102,6 +107,7 @@ export(repeated_instruments)
export(sankey_ready)
export(selectInputIcon)
export(set_column_label)
export(show_data)
export(sort_by)
export(specify_qmd_format)
export(subset_types)
@ -117,6 +123,7 @@ export(update_variables_ui)
export(vectorSelectInput)
export(vertical_stacked_bars)
export(wide2long)
export(winbox_create_column)
export(winbox_update_factor)
export(wrap_plot_list)
export(write_quarto)
@ -134,6 +141,7 @@ importFrom(htmltools,css)
importFrom(htmltools,tagList)
importFrom(htmltools,tags)
importFrom(htmltools,validateCssUnit)
importFrom(phosphoricons,ph)
importFrom(rlang,"%||%")
importFrom(rlang,call2)
importFrom(rlang,expr)
@ -152,20 +160,25 @@ importFrom(shiny,isTruthy)
importFrom(shiny,modalDialog)
importFrom(shiny,moduleServer)
importFrom(shiny,numericInput)
importFrom(shiny,observe)
importFrom(shiny,observeEvent)
importFrom(shiny,plotOutput)
importFrom(shiny,reactive)
importFrom(shiny,reactiveValues)
importFrom(shiny,renderPlot)
importFrom(shiny,renderUI)
importFrom(shiny,req)
importFrom(shiny,restoreInput)
importFrom(shiny,selectizeInput)
importFrom(shiny,showModal)
importFrom(shiny,tagList)
importFrom(shiny,textAreaInput)
importFrom(shiny,textInput)
importFrom(shiny,uiOutput)
importFrom(shiny,updateActionButton)
importFrom(shiny,updateTextAreaInput)
importFrom(shinyWidgets,WinBox)
importFrom(shinyWidgets,alert)
importFrom(shinyWidgets,noUiSliderInput)
importFrom(shinyWidgets,prettyCheckbox)
importFrom(shinyWidgets,updateVirtualSelect)