-
Notifications
You must be signed in to change notification settings - Fork 4
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
HTML block #154
base: main
Are you sure you want to change the base?
HTML block #154
Conversation
Example: devtools::load_all()
library(blockr.data)
library(shiny)
stack <- new_stack(
data_block,
select_block,
head_block,
html_block
)
ui <- fluidPage(
"test",
theme = bslib::bs_theme(5L),
generate_ui(stack)
)
server <- function(input, output) {
x <- generate_server(stack)
}
shinyApp(ui, server) |
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #154 +/- ##
==========================================
- Coverage 75.81% 74.14% -1.67%
==========================================
Files 16 16
Lines 1790 1845 +55
==========================================
+ Hits 1357 1368 +11
- Misses 433 477 +44 ☔ View full report in Codecov by Sentry. |
How would you build a value box from this block? |
@DivadNojnarg you can try again, it can be made to resemble more like a valuebox~ish (default). |
Converting to draft, there were quite a lot of conflicts to fix and I do not want to run the risk of breaking things now. |
HTML block output