From b5dac844258b9157c850889a6db45f97bce9861c Mon Sep 17 00:00:00 2001 From: DivadNojnarg Date: Thu, 26 Sep 2024 18:03:42 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20@=20RinteRfa?= =?UTF-8?q?ce/tablerDash@6e351c97a0336e9a4e5fcd219d35cf6165f36501=20?= =?UTF-8?q?=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.html | 245 +++++++++++++++++++++++++++++++++++++++++++++++++++- pkgdown.yml | 2 +- search.json | 2 +- 3 files changed, 244 insertions(+), 5 deletions(-) diff --git a/index.html b/index.html index 5e81926..a08975f 100644 --- a/index.html +++ b/index.html @@ -67,9 +67,9 @@

Installation

Demo

-
+
-
@@ -79,7 +79,246 @@

Demo

-
+library(shiny) +library(tablerDash) +library(echarts4r) +library(shinyWidgets) +library(magrittr) +library(palmerpenguins) + + +# datas flowGl +vectors <- expand.grid(x = -3:3, y = -3:3) +mu <- 1 +vectors$sx <- vectors$y +vectors$sy <- mu * (1 - vectors$x^2) * vectors$y - vectors$x +vectors$color <- log10(runif(nrow(vectors), 1, 10)) + +# cards +flowCard <- tablerCard( + title = "FlowGl Chart", + closable = FALSE, + zoomable = TRUE, + options = tagList( + tablerAvatar(status = "lime", url = "https://preview.tabler.io/static/avatars/000m.jpg") + ), + width = 12, + echarts4rOutput("flowGl"), + footer = tablerTag(name = "build", addon = "passing", addonColor = "success") +) + +profileCard <- tablerProfileCard( + width = 12, + title = "Dyann Escala", + subtitle = "Mechanical Systems Engineer", + src = "https://preview.tabler.io/static/photos/finances-us-dollars-and-bitcoins-currency-money.jpg", + tablerSocialLinks( + tablerSocialLink( + name = "facebook", + href = "https://www.facebook.com", + icon = "facebook" + ), + tablerSocialLink( + name = "twitter", + href = "https://www.twitter.com", + icon = "twitter" + ) + ) +) + +# app +shiny::shinyApp( + ui = tablerDashPage( + navbar = tablerDashNav( + id = "mymenu", + src = "https://raw.githubusercontent.com/tabler/tabler/dev/src/static/logo.svg", + navMenu = tablerNavMenu( + tablerNavMenuItem( + tabName = "Home", + icon = "home", + "Home" + ), + tablerNavMenuItem( + tabName = "Test", + icon = "box", + "Test" + ) + ), + tablerDropdown( + tablerDropdownItem( + title = "Item 1 title", + href = "http://google.com", + status = "danger", + date = "now", + "This is the first dropdown item" + ), + tablerDropdownItem( + status = "warning", + "This is the second dropdown item", + date = "yesterday" + ), + tablerDropdownItem( + title = "Item 3 title", + "This is the third dropdown item" + ) + ) + ), + footer = tablerDashFooter( + tablerIcon(name = "maestro", lib = "payment"), + tablerIcon(name = "mastercard", lib = "payment"), + copyrights = "@David Granjon, 2024" + ), + title = "tablerDash", + body = tablerDashBody( + + chooseSliderSkin("Modern"), + tablerTabItems( + tablerTabItem( + tabName = "Home", + fluidRow( + column( + width = 4, + profileCard, + numericInput( + inputId = "totalStorage", + label = "Enter storage capacity", + value = 1000), + uiOutput("info") + ), + column( + width = 8, + flowCard + ) + ), + fluidRow( + column( + width = 8, + tablerCard( + status = "primary", + statusSide = "top", + width = 12, + tablerTimeline( + tablerTimelineItem( + title = "Item 1", + status = "green", + date = "now" + ), + tablerTimelineItem( + title = "Item 2", + status = NULL, + date = "yesterday", + "Lorem ipsum dolor sit amet, + consectetur adipisicing elit." + ) + ) + ) + ), + column( + width = 4, + tablerStatCard( + value = 43, + title = "Followers", + trend = -10, + width = 12 + ) + ) + ) + ), + tablerTabItem( + tabName = "Test", + tablerCard( + title = "Plots", + plotOutput("distPlot"), + status = "info", + statusSide = "left", + width = 12, + footer = tagList( + column( + width = 12, + align = "center", + sliderInput( + "obs", + "Number of observations:", + min = 0, + max = 1000, + value = 500 + ) + ) + ) + ), + tablerCard( + title = "Tables", + selectInput( + "variable", + "Variables to show:", + choices = colnames(penguins), + selected = colnames(penguins), + multiple = TRUE + ), + tableOutput("data"), + width = 12, + overflow = TRUE + ), + tablerCard( + width = 12, + echarts4rOutput("gauge", height = "300px"), + sliderInput( + "gaugeVal", + "Gauge Value:", + min = 0, + max = 100, + value = 50 + ) + ) + ) + ) + ) + ), + server = function(input, output) { + output$distPlot <- renderPlot({ + hist(rnorm(input$obs)) + }) + output$data <- renderTable({ + penguins[, input$variable, drop = FALSE] + }, rownames = TRUE) + + output$flowGl <- renderEcharts4r({ + vectors %>% + e_charts(x) %>% + e_flow_gl(y, sx, sy, color) %>% + e_visual_map( + min = 0, max = 1, # log 10 + dimension = 4, # x = 0, y = 1, sx = 3, sy = 4 + show = FALSE, # hide + inRange = list( + color = c('#313695', '#4575b4', '#74add1', '#abd9e9', '#e0f3f8', + '#ffffbf', '#fee090', '#fdae61', '#f46d43', '#d73027', '#a50026') + ) + ) %>% + e_x_axis( + splitLine = list(show = FALSE) + ) %>% + e_y_axis( + splitLine = list(show = FALSE) + ) + }) + + output$info <- renderUI({ + tablerInfoCard( + width = 12, + value = paste0(input$totalStorage, "GB"), + status = "success", + icon = "database", + description = "Total Storage Capacity" + ) + }) + + output$gauge <- renderEcharts4r({ + e_charts() %>% + e_gauge(as.numeric(input$gaugeVal), "%") + }) + } +)

diff --git a/pkgdown.yml b/pkgdown.yml index a190141..029c9db 100644 --- a/pkgdown.yml +++ b/pkgdown.yml @@ -2,7 +2,7 @@ pandoc: 3.1.11 pkgdown: 2.1.1 pkgdown_sha: ~ articles: {} -last_built: 2024-09-26T18:01Z +last_built: 2024-09-26T18:03Z urls: reference: https://rinterface.github.io/tablerDash/reference article: https://rinterface.github.io/tablerDash/articles diff --git a/search.json b/search.json index 674d52c..21f3b54 100644 --- a/search.json +++ b/search.json @@ -1 +1 @@ -[{"path":[]},{"path":"https://rinterface.github.io/tablerDash/CODE_OF_CONDUCT.html","id":"our-pledge","dir":"","previous_headings":"","what":"Our Pledge","title":"Contributor Covenant Code of Conduct","text":"members, contributors, leaders pledge make participation community harassment-free experience everyone, regardless age, body size, visible invisible disability, ethnicity, sex characteristics, gender identity expression, level experience, education, socio-economic status, nationality, personal appearance, race, religion, sexual identity orientation. pledge act interact ways contribute open, welcoming, diverse, inclusive, healthy community.","code":""},{"path":"https://rinterface.github.io/tablerDash/CODE_OF_CONDUCT.html","id":"our-standards","dir":"","previous_headings":"","what":"Our Standards","title":"Contributor Covenant Code of Conduct","text":"Examples behavior contributes positive environment community include: Demonstrating empathy kindness toward people respectful differing opinions, viewpoints, experiences Giving gracefully accepting constructive feedback Accepting responsibility apologizing affected mistakes, learning experience Focusing best just us individuals, overall community Examples unacceptable behavior include: use sexualized language imagery, sexual attention advances kind Trolling, insulting derogatory comments, personal political attacks Public private harassment Publishing others’ private information, physical email address, without explicit permission conduct reasonably considered inappropriate professional setting","code":""},{"path":"https://rinterface.github.io/tablerDash/CODE_OF_CONDUCT.html","id":"enforcement-responsibilities","dir":"","previous_headings":"","what":"Enforcement Responsibilities","title":"Contributor Covenant Code of Conduct","text":"Community leaders responsible clarifying enforcing standards acceptable behavior take appropriate fair corrective action response behavior deem inappropriate, threatening, offensive, harmful. Community leaders right responsibility remove, edit, reject comments, commits, code, wiki edits, issues, contributions aligned Code Conduct, communicate reasons moderation decisions appropriate.","code":""},{"path":"https://rinterface.github.io/tablerDash/CODE_OF_CONDUCT.html","id":"scope","dir":"","previous_headings":"","what":"Scope","title":"Contributor Covenant Code of Conduct","text":"Code Conduct applies within community spaces, also applies individual officially representing community public spaces. Examples representing community include using official e-mail address, posting via official social media account, acting appointed representative online offline event.","code":""},{"path":"https://rinterface.github.io/tablerDash/CODE_OF_CONDUCT.html","id":"enforcement","dir":"","previous_headings":"","what":"Enforcement","title":"Contributor Covenant Code of Conduct","text":"Instances abusive, harassing, otherwise unacceptable behavior may reported community leaders responsible enforcement [INSERT CONTACT METHOD]. complaints reviewed investigated promptly fairly. community leaders obligated respect privacy security reporter incident.","code":""},{"path":"https://rinterface.github.io/tablerDash/CODE_OF_CONDUCT.html","id":"enforcement-guidelines","dir":"","previous_headings":"","what":"Enforcement Guidelines","title":"Contributor Covenant Code of Conduct","text":"Community leaders follow Community Impact Guidelines determining consequences action deem violation Code Conduct:","code":""},{"path":"https://rinterface.github.io/tablerDash/CODE_OF_CONDUCT.html","id":"id_1-correction","dir":"","previous_headings":"Enforcement Guidelines","what":"1. Correction","title":"Contributor Covenant Code of Conduct","text":"Community Impact: Use inappropriate language behavior deemed unprofessional unwelcome community. Consequence: private, written warning community leaders, providing clarity around nature violation explanation behavior inappropriate. public apology may requested.","code":""},{"path":"https://rinterface.github.io/tablerDash/CODE_OF_CONDUCT.html","id":"id_2-warning","dir":"","previous_headings":"Enforcement Guidelines","what":"2. Warning","title":"Contributor Covenant Code of Conduct","text":"Community Impact: violation single incident series actions. Consequence: warning consequences continued behavior. interaction people involved, including unsolicited interaction enforcing Code Conduct, specified period time. includes avoiding interactions community spaces well external channels like social media. Violating terms may lead temporary permanent ban.","code":""},{"path":"https://rinterface.github.io/tablerDash/CODE_OF_CONDUCT.html","id":"id_3-temporary-ban","dir":"","previous_headings":"Enforcement Guidelines","what":"3. Temporary Ban","title":"Contributor Covenant Code of Conduct","text":"Community Impact: serious violation community standards, including sustained inappropriate behavior. Consequence: temporary ban sort interaction public communication community specified period time. public private interaction people involved, including unsolicited interaction enforcing Code Conduct, allowed period. Violating terms may lead permanent ban.","code":""},{"path":"https://rinterface.github.io/tablerDash/CODE_OF_CONDUCT.html","id":"id_4-permanent-ban","dir":"","previous_headings":"Enforcement Guidelines","what":"4. Permanent Ban","title":"Contributor Covenant Code of Conduct","text":"Community Impact: Demonstrating pattern violation community standards, including sustained inappropriate behavior, harassment individual, aggression toward disparagement classes individuals. Consequence: permanent ban sort public interaction within community.","code":""},{"path":"https://rinterface.github.io/tablerDash/CODE_OF_CONDUCT.html","id":"attribution","dir":"","previous_headings":"","what":"Attribution","title":"Contributor Covenant Code of Conduct","text":"Code Conduct adapted Contributor Covenant, version 2.0, available https://www.contributor-covenant.org/version/2/0/ code_of_conduct.html. Community Impact Guidelines inspired Mozilla’s code conduct enforcement ladder. answers common questions code conduct, see FAQ https://www.contributor-covenant.org/faq. Translations available https:// www.contributor-covenant.org/translations.","code":""},{"path":"https://rinterface.github.io/tablerDash/authors.html","id":null,"dir":"","previous_headings":"","what":"Authors","title":"Authors and Citation","text":"David Granjon. Author, maintainer. RinteRface. Copyright holder. codecalm. Contributor, copyright holder. tabler template Bootstrap 4 Winston Chang. Contributor, copyright holder. Utils functions shinydashboard","code":""},{"path":"https://rinterface.github.io/tablerDash/authors.html","id":"citation","dir":"","previous_headings":"","what":"Citation","title":"Authors and Citation","text":"Granjon D (2024). tablerDash: 'Tabler' API 'Shiny'. R package version 0.1.5.9000, https://github.com/RinteRface/tablerDash/, https://rinterface.github.io/tablerDash/.","code":"@Manual{, title = {tablerDash: 'Tabler' API for 'Shiny'}, author = {David Granjon}, year = {2024}, note = {R package version 0.1.5.9000, https://github.com/RinteRface/tablerDash/}, url = {https://rinterface.github.io/tablerDash/}, }"},{"path":"https://rinterface.github.io/tablerDash/index.html","id":"tablerdash-","dir":"","previous_headings":"","what":"Tabler API for Shiny","title":"Tabler API for Shiny","text":"Tabler dashboard template shiny Bootstrap 4 See https://tabler.io original template.","code":""},{"path":"https://rinterface.github.io/tablerDash/index.html","id":"installation","dir":"","previous_headings":"","what":"Installation","title":"Tabler API for Shiny","text":"package CRAN:","code":"# latest devel version devtools::install_github(\"RinteRface/tablerDash\") # CRAN version install.packages(\"tablerDash\")"},{"path":"https://rinterface.github.io/tablerDash/index.html","id":"demo","dir":"","previous_headings":"","what":"Demo","title":"Tabler API for Shiny","text":"Toggle code","code":""},{"path":"https://rinterface.github.io/tablerDash/index.html","id":"issues","dir":"","previous_headings":"","what":"Issues","title":"Tabler API for Shiny","text":"Issues listed .","code":""},{"path":"https://rinterface.github.io/tablerDash/index.html","id":"code-of-conduct","dir":"","previous_headings":"","what":"Code of Conduct","title":"Tabler API for Shiny","text":"Please note tablerDash project released Contributor Code Conduct. contributing project, agree abide terms.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/create_app_link.html","id":null,"dir":"Reference","previous_headings":"","what":"Create shinylive iframe — create_app_link","title":"Create shinylive iframe — create_app_link","text":"Useful pkgdown website","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/create_app_link.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create shinylive iframe — create_app_link","text":"","code":"create_app_link(url, mode = c(\"app\", \"editor\"), header = TRUE)"},{"path":"https://rinterface.github.io/tablerDash/reference/create_app_link.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create shinylive iframe — create_app_link","text":"url app url. shinylive link. mode display shinylive app. Default app mode. header Whether display shinylive header. Default TRUE.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerAlert.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 alert — tablerAlert","title":"Create a Boostrap 4 alert — tablerAlert","text":"Build tabler alert","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerAlert.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 alert — tablerAlert","text":"","code":"tablerAlert(..., title = NULL, status, icon = NULL, closable = TRUE)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerAlert.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 alert — tablerAlert","text":"... Alert content. title Alert title. status Alert status. See https://preview.tabler.io/docs/colors.html. icon Alert icon. closable Whether close alert. TRUE default.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerAlert.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 alert — tablerAlert","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerAlert.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create a Boostrap 4 alert — tablerAlert","text":"","code":"if(interactive()){ library(shiny) library(tablerDash) shiny::shinyApp( ui = tablerDashPage( navbar = NULL, footer = NULL, title = \"test\", body = tablerDashBody( tablerAlert( title = \"Alert\", \"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Lorem ipsum dolor sit amet, consectetur adipisicing elit.\", icon = \"alert-triangle\", status = \"info\" ) ) ), server = function(input, output) {} ) }"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerAvatar.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 avatar — tablerAvatar","title":"Create a Boostrap 4 avatar — tablerAvatar","text":"Build tabler avatar","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerAvatar.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 avatar — tablerAvatar","text":"","code":"tablerAvatar(name = NULL, url = NULL, size = NULL, status = NULL, color = NULL)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerAvatar.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 avatar — tablerAvatar","text":"name Avatar placeholder. NULL, url used. url Avatar image . NULL, name used. size Avatar size. NULL, \"sm\", \"md\", \"lg\", \"xl\" \"xxl\". status Avatar status. See https://preview.tabler.io/docs/colors.html valid statuses. color Avatar background color. See https://preview.tabler.io/docs/colors.html valid colors.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerAvatar.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 avatar — tablerAvatar","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerAvatar.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create a Boostrap 4 avatar — tablerAvatar","text":"","code":"if(interactive()){ library(shiny) library(tablerDash) shiny::shinyApp( ui = tablerDashPage( navbar = NULL, footer = NULL, title = \"test\", body = tablerDashBody( tablerAvatar( name = \"DG\", size = \"xxl\" ), tablerAvatar( name = \"DG\", color = \"orange\" ), tablerAvatar( name = \"DG\", status = \"warning\" ), tablerAvatar(url = \"https://image.flaticon.com/icons/svg/145/145852.svg\") ) ), server = function(input, output) {} ) }"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerAvatarList.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 avatar list — tablerAvatarList","title":"Create a Boostrap 4 avatar list — tablerAvatarList","text":"Build tabler avatar list","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerAvatarList.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 avatar list — tablerAvatarList","text":"","code":"tablerAvatarList(..., stacked = FALSE)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerAvatarList.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 avatar list — tablerAvatarList","text":"... Slot tablerAvatar. stacked Whether stack avatars. FALSE default.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerAvatarList.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 avatar list — tablerAvatarList","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerAvatarList.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create a Boostrap 4 avatar list — tablerAvatarList","text":"","code":"if(interactive()){ library(shiny) library(tablerDash) shiny::shinyApp( ui = tablerDashPage( navbar = NULL, footer = NULL, title = \"test\", body = tablerDashBody( tablerAvatarList( stacked = TRUE, tablerAvatar( name = \"DG\", size = \"xxl\" ), tablerAvatar( name = \"DG\", color = \"orange\" ), tablerAvatar( name = \"DG\", status = \"warning\" ), tablerAvatar(url = \"https://image.flaticon.com/icons/svg/145/145852.svg\") ) ) ), server = function(input, output) {} ) }"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerBlogCard.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 blog card — tablerBlogCard","title":"Create a Boostrap 4 blog card — tablerBlogCard","text":"Build tabler blog card","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerBlogCard.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 blog card — tablerBlogCard","text":"","code":"tablerBlogCard( ..., title = NULL, author = NULL, date = NULL, href = NULL, src = NULL, avatarUrl = NULL, width = 4, horizontal = FALSE )"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerBlogCard.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 blog card — tablerBlogCard","text":"... elements. title Title. author Blog post author. date Date. href External link. src Image url. avatarUrl Avatar image. width Card width. 4 default. horizontal Whether card horizontally displayed. FALSE default.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerBlogCard.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 blog card — tablerBlogCard","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerBlogCard.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create a Boostrap 4 blog card — tablerBlogCard","text":"","code":"if(interactive()){ library(shiny) library(tablerDash) shiny::shinyApp( ui = tablerDashPage( navbar = NULL, footer = NULL, title = \"test\", body = tablerDashBody( tablerBlogCard( title = \"Blog Card\", author = \"David\", date = \"Today\", href = \"https://www.google.com\", src = \"https://preview.tabler.io/demo/photos/matt-barrett-339981-500.jpg\", avatarUrl = \"https://image.flaticon.com/icons/svg/145/145842.svg\", width = 6, \"Look, my liege! The Knights Who Say Ni demand a sacrifice! …Are you suggesting that coconuts migr...\" ) ) ), server = function(input, output) {} ) }"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerCard.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 card — tablerCard","title":"Create a Boostrap 4 card — tablerCard","text":"Build tabler card","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerCard.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 card — tablerCard","text":"","code":"tablerCard( ..., title = NULL, options = NULL, footer = NULL, status = NULL, statusSide = c(\"top\", \"left\"), collapsible = TRUE, collapsed = FALSE, closable = TRUE, zoomable = TRUE, width = 6, overflow = FALSE )"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerCard.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 card — tablerCard","text":"... Body content title Card title. NULL, header displayed. options Card extra header elements. footer Card footer. NULL default. displayed NULL. status Card status. NULL default. See https://preview.tabler.io/docs/colors.html valid statuses. statusSide Status side: \"top\" \"left\". collapsible Whether card collapsible. TRUE default. collapsed Whether collapse card start. FALSE default. closable Whether card closable. TRUE default. zoomable Whether card zoomable. TRUE default. width Card width. 6 default. See Bootstrap grid system. NULL, card full width. overflow Whether set x y overflow. FALSE default. Useful case card contains large tables.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerCard.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 card — tablerCard","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerCard.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create a Boostrap 4 card — tablerCard","text":"","code":"if(interactive()){ library(shiny) library(tablerDash) shiny::shinyApp( ui = tablerDashPage( navbar = NULL, footer = NULL, title = \"test\", body = tablerDashBody( tablerCard( title = \"Card\", sliderInput(\"obs\", \"Number of observations:\", min = 0, max = 1000, value = 500 ), plotOutput(\"distPlot\"), status = \"success\", statusSide = \"left\" ) ) ), server = function(input, output) { output$distPlot <- renderPlot({ hist(rnorm(input$obs)) }) } ) }"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDashBody.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 dashboard body — tablerDashBody","title":"Create a Boostrap 4 dashboard body — tablerDashBody","text":"Build tabler dashboard body","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDashBody.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 dashboard body — tablerDashBody","text":"","code":"tablerDashBody(...)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDashBody.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 dashboard body — tablerDashBody","text":"... Body content, slot tablerTabItems.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDashBody.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 dashboard body — tablerDashBody","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDashFooter.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 dashboard footer — tablerDashFooter","title":"Create a Boostrap 4 dashboard footer — tablerDashFooter","text":"Build adminLTE3 dashboard footer","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDashFooter.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 dashboard footer — tablerDashFooter","text":"","code":"tablerDashFooter(..., copyrights = NULL)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDashFooter.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 dashboard footer — tablerDashFooter","text":"... Left text. copyrights Copyrights, .","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDashFooter.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 dashboard footer — tablerDashFooter","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDashGallery.html","id":null,"dir":"Reference","previous_headings":"","what":"Launch the tablerDash Gallery — tablerDashGallery","title":"Launch the tablerDash Gallery — tablerDashGallery","text":"gallery components available tablerDash.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDashGallery.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Launch the tablerDash Gallery — tablerDashGallery","text":"","code":"tablerDashGallery()"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDashGallery.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Launch the tablerDash Gallery — tablerDashGallery","text":"","code":"if (interactive()) { tablerDashGallery() }"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDashNav.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 dashboard navbar — tablerDashNav","title":"Create a Boostrap 4 dashboard navbar — tablerDashNav","text":"Build tabler dashboard page","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDashNav.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 dashboard navbar — tablerDashNav","text":"","code":"tablerDashNav(id, ..., src = NULL, navMenu = NULL)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDashNav.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 dashboard navbar — tablerDashNav","text":"id Navbar id. ... Navbar content. src Brand image url path. navMenu Slot tablerNavMenu","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDashNav.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 dashboard navbar — tablerDashNav","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDashPage.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 dashboard page — tablerDashPage","title":"Create a Boostrap 4 dashboard page — tablerDashPage","text":"Build tabler dashboard page","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDashPage.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 dashboard page — tablerDashPage","text":"","code":"tablerDashPage( navbar = NULL, body = NULL, footer = NULL, title = NULL, enable_preloader = FALSE, loading_duration = 2 )"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDashPage.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 dashboard page — tablerDashPage","text":"navbar Slot tablerDashNav. body Slot tablerDashBody. footer Slot tablerDashFooter. title App title. enable_preloader Whether enable page loader. FALSE default. loading_duration Loader duration seconds. 2s default.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDashPage.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 dashboard page — tablerDashPage","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDashPage.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create a Boostrap 4 dashboard page — tablerDashPage","text":"","code":"if(interactive()){ library(shiny) library(tablerDash) shiny::shinyApp( ui = tablerDashPage( navbar = tablerDashNav(), footer = tablerDashFooter(), title = \"test\", body = tablerDashBody() ), server = function(input, output) {} ) }"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDropdown.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 dashboard dropdown container — tablerDropdown","title":"Create a Boostrap 4 dashboard dropdown container — tablerDropdown","text":"Build tabler dashboard dropdown container","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDropdown.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 dashboard dropdown container — tablerDropdown","text":"","code":"tablerDropdown(..., icon = \"bell\", collapsed = TRUE)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDropdown.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 dashboard dropdown container — tablerDropdown","text":"... Slot tablerDropdownItem. icon Dropdown icon. collapsed Whether collapse dropdown. TRUE default.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDropdown.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 dashboard dropdown container — tablerDropdown","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDropdownItem.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 dashboard dropdown container — tablerDropdownItem","title":"Create a Boostrap 4 dashboard dropdown container — tablerDropdownItem","text":"Build tabler dashboard dropdown container","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDropdownItem.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 dashboard dropdown container — tablerDropdownItem","text":"","code":"tablerDropdownItem( ..., title = NULL, href = NULL, url = NULL, status = NULL, date = NULL )"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDropdownItem.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 dashboard dropdown container — tablerDropdownItem","text":"... Item content. title Item title. href External link. url Author image. status Item status. url NULL. date Item date.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDropdownItem.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 dashboard dropdown container — tablerDropdownItem","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerIcon.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 icon — tablerIcon","title":"Create a Boostrap 4 icon — tablerIcon","text":"Build tabler icon","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerIcon.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 icon — tablerIcon","text":"","code":"tablerIcon(name, lib = c(\"feather\", \"font-awesome\", \"payment\"))"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerIcon.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 icon — tablerIcon","text":"name Name icon. See https://preview.tabler.io/icons.html valid icons. lib Icon library (\"feather\", \"font-awesome\", \"payment\").","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerIcon.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 icon — tablerIcon","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerInfoCard.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 info card — tablerInfoCard","title":"Create a Boostrap 4 info card — tablerInfoCard","text":"Build tabler info card","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerInfoCard.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 info card — tablerInfoCard","text":"","code":"tablerInfoCard(value, description = NULL, status, icon, href = NULL, width = 4)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerInfoCard.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 info card — tablerInfoCard","text":"value Card value. description Percentage increase/decrease. status Card status. See https://preview.tabler.io/docs/colors.html. icon Card icon. href External link. width Card width. 4 default.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerInfoCard.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 info card — tablerInfoCard","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerInfoCard.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create a Boostrap 4 info card — tablerInfoCard","text":"","code":"if(interactive()){ library(shiny) library(tablerDash) shiny::shinyApp( ui = tablerDashPage( navbar = NULL, footer = NULL, title = \"test\", body = tablerDashBody( tablerInfoCard( value = \"132 sales\", status = \"danger\", icon = \"dollar-sign\", description = \"12 waiting payments\" ) ) ), server = function(input, output) {} ) }"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerList.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 list container — tablerList","title":"Create a Boostrap 4 list container — tablerList","text":"Build tabler list container","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerList.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 list container — tablerList","text":"","code":"tablerList(...)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerList.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 list container — tablerList","text":"... Slot tablerListItem.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerList.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 list container — tablerList","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerList.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create a Boostrap 4 list container — tablerList","text":"","code":"if(interactive()){ library(shiny) library(tablerDash) shiny::shinyApp( ui = tablerDashPage( navbar = NULL, footer = NULL, title = \"test\", body = tablerDashBody( tablerCard( title = \"tablerList\", tablerList( tablerListItem( tablerTag(name = \"Tag\"), tablerTag(name = \"Tag\", href = \"https://www.google.com\"), tablerTag(name = \"Tag\", rounded = TRUE, color = \"pink\") ), tablerListItem(tablerStatus(color = \"red\")), tablerListItem( tablerAvatarList( stacked = TRUE, tablerAvatar( name = \"DG\", size = \"xxl\" ), tablerAvatar( name = \"DG\", color = \"orange\" ), tablerAvatar( name = \"DG\", status = \"warning\" ), tablerAvatar(url = \"https://image.flaticon.com/icons/svg/145/145852.svg\") ) ) ) ) ) ), server = function(input, output) {} ) }"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerListItem.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 list item — tablerListItem","title":"Create a Boostrap 4 list item — tablerListItem","text":"Build tabler list item","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerListItem.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 list item — tablerListItem","text":"","code":"tablerListItem(...)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerListItem.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 list item — tablerListItem","text":"... Slot HTML element.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerListItem.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 list item — tablerListItem","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerMediaCard.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 media card — tablerMediaCard","title":"Create a Boostrap 4 media card — tablerMediaCard","text":"Build tabler media card","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerMediaCard.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 media card — tablerMediaCard","text":"","code":"tablerMediaCard( ..., title = NULL, date = NULL, href = NULL, src = NULL, avatarUrl = NULL, width = 4 )"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerMediaCard.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 media card — tablerMediaCard","text":"... elements. title Title. date Date. href External link. src Image url. avatarUrl Avatar image. width Card width. 4 default.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerMediaCard.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 media card — tablerMediaCard","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerMediaCard.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create a Boostrap 4 media card — tablerMediaCard","text":"","code":"if(interactive()){ library(shiny) library(tablerDash) shiny::shinyApp( ui = tablerDashPage( navbar = NULL, footer = NULL, title = \"test\", body = tablerDashBody( tablerMediaCard( title = \"Media Card\", date = \"Today\", href = \"https://www.google.com\", src = \"https://preview.tabler.io/demo/photos/matt-barrett-339981-500.jpg\", avatarUrl = \"https://image.flaticon.com/icons/svg/145/145842.svg\", width = 6 ) ) ), server = function(input, output) {} ) }"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerNavMenu.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 dashboard navbar menu — tablerNavMenu","title":"Create a Boostrap 4 dashboard navbar menu — tablerNavMenu","text":"Build tabler dashboard main navbar menu","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerNavMenu.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 dashboard navbar menu — tablerNavMenu","text":"","code":"tablerNavMenu(...)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerNavMenu.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 dashboard navbar menu — tablerNavMenu","text":"... Slot tablerNavMenuItem.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerNavMenu.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 dashboard navbar menu — tablerNavMenu","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerNavMenuItem.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 dashboard navbar menu item — tablerNavMenuItem","title":"Create a Boostrap 4 dashboard navbar menu item — tablerNavMenuItem","text":"Build tabler dashboard navbar menu item","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerNavMenuItem.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 dashboard navbar menu item — tablerNavMenuItem","text":"","code":"tablerNavMenuItem(..., tabName = NULL, icon = NULL)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerNavMenuItem.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 dashboard navbar menu item — tablerNavMenuItem","text":"... Item name. tabName correspond exactly tabName given tablerTabItem. icon Item icon.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerNavMenuItem.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 dashboard navbar menu item — tablerNavMenuItem","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerProfileCard.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 profile card — tablerProfileCard","title":"Create a Boostrap 4 profile card — tablerProfileCard","text":"Build tabler profile card","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerProfileCard.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 profile card — tablerProfileCard","text":"","code":"tablerProfileCard( title = NULL, subtitle = NULL, background = NULL, src = NULL, socials = NULL, width = 4 )"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerProfileCard.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 profile card — tablerProfileCard","text":"title Profile title. subtitle Card subtitle. background Card background url path. src User profile image. socials Slot tablerSocialLinks tablerSocialLink. width Card width. 4 default.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerProfileCard.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 profile card — tablerProfileCard","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerProfileCard.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create a Boostrap 4 profile card — tablerProfileCard","text":"","code":"if(interactive()){ library(shiny) library(tablerDash) shiny::shinyApp( ui = tablerDashPage( navbar = NULL, footer = NULL, title = \"test\", body = tablerDashBody( tablerProfileCard( title = \"Peter Richards\", subtitle = \"Big belly rude boy, million dollar hustler. Unemployed.\", background = \"https://preview.tabler.io/demo/photos/ilnur-kalimullin-218996-500.jpg\", src = \"https://preview.tabler.io/demo/faces/male/16.jpg\", tablerSocialLinks( tablerSocialLink( name = \"facebook\", href = \"https://www.facebook.com\", icon = \"facebook\" ), tablerSocialLink( name = \"twitter\", href = \"https://www.twitter.com\", icon = \"twitter\" ) ) ) ) ), server = function(input, output) {} ) }"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerProgress.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 progress bar — tablerProgress","title":"Create a Boostrap 4 progress bar — tablerProgress","text":"Build tabler progress bar","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerProgress.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 progress bar — tablerProgress","text":"","code":"tablerProgress(value, status = NULL, size = NULL)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerProgress.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 progress bar — tablerProgress","text":"value Progress value. status Progress status. See https://preview.tabler.io/docs/colors.html. size Progress bar size: NULL, \"xs\", \"sm\", \"md\".","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerProgress.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 progress bar — tablerProgress","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerProgress.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create a Boostrap 4 progress bar — tablerProgress","text":"","code":"if(interactive()){ library(shiny) library(tablerDash) shiny::shinyApp( ui = tablerDashPage( navbar = NULL, footer = NULL, title = \"test\", body = tablerDashBody( tablerProgress(value = 10, size = \"xs\"), tablerProgress(value = 90, status = \"red\", size = \"sm\") ) ), server = function(input, output) {} ) }"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerSocialLink.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 social link — tablerSocialLink","title":"Create a Boostrap 4 social link — tablerSocialLink","text":"Build tabler social link","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerSocialLink.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 social link — tablerSocialLink","text":"","code":"tablerSocialLink(name = NULL, href = NULL, icon)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerSocialLink.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 social link — tablerSocialLink","text":"name Link tooltip name. href External link. icon Icon (font awesome).","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerSocialLink.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 social link — tablerSocialLink","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerSocialLinks.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 social link list — tablerSocialLinks","title":"Create a Boostrap 4 social link list — tablerSocialLinks","text":"Build tabler social link list","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerSocialLinks.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 social link list — tablerSocialLinks","text":"","code":"tablerSocialLinks(...)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerSocialLinks.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 social link list — tablerSocialLinks","text":"... Slot tablerSocialLink.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerSocialLinks.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 social link list — tablerSocialLinks","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerSocialLinks.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create a Boostrap 4 social link list — tablerSocialLinks","text":"","code":"if(interactive()){ library(shiny) library(tablerDash) shiny::shinyApp( ui = tablerDashPage( navbar = NULL, footer = NULL, title = \"test\", body = tablerDashBody( tablerSocialLinks( tablerSocialLink( name = \"facebook\", href = \"https://www.facebook.com\", icon = \"facebook\" ), tablerSocialLink( name = \"twitter\", href = \"https://www.twitter.com\", icon = \"twitter\" ) ) ) ), server = function(input, output) {} ) }"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerStatCard.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 stat card — tablerStatCard","title":"Create a Boostrap 4 stat card — tablerStatCard","text":"Build tabler stat card","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerStatCard.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 stat card — tablerStatCard","text":"","code":"tablerStatCard(value, title, trend = NULL, width = 3)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerStatCard.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 stat card — tablerStatCard","text":"value Card value. title Card title. trend Percentage increase/decrease. width Card width. 3 default.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerStatCard.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 stat card — tablerStatCard","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerStatCard.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create a Boostrap 4 stat card — tablerStatCard","text":"","code":"if(interactive()){ library(shiny) library(tablerDash) shiny::shinyApp( ui = tablerDashPage( navbar = NULL, footer = NULL, title = \"test\", body = tablerDashBody( tablerStatCard( value = 43, title = \"Followers\", trend = -10 ) ) ), server = function(input, output) {} ) }"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerStatus.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 status — tablerStatus","title":"Create a Boostrap 4 status — tablerStatus","text":"Build tabler status","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerStatus.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 status — tablerStatus","text":"","code":"tablerStatus(color)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerStatus.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 status — tablerStatus","text":"color Status color. See https://preview.tabler.io/docs/colors.html.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerStatus.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 status — tablerStatus","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerStatus.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create a Boostrap 4 status — tablerStatus","text":"","code":"if(interactive()){ library(shiny) library(tablerDash) shiny::shinyApp( ui = tablerDashPage( navbar = NULL, footer = NULL, title = \"test\", body = tablerDashBody( tablerStatus(color = \"lime\") ) ), server = function(input, output) {} ) }"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTabItem.html","id":null,"dir":"Reference","previous_headings":"","what":"One tab to put inside a tab items container — tablerTabItem","title":"One tab to put inside a tab items container — tablerTabItem","text":"One tab put inside tab items container","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTabItem.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"One tab to put inside a tab items container — tablerTabItem","text":"","code":"tablerTabItem(tabName = NULL, ...)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTabItem.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"One tab to put inside a tab items container — tablerTabItem","text":"tabName name tab. must correspond tabName tablerNavMenuItem. ... Contents tab.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTabItems.html","id":null,"dir":"Reference","previous_headings":"","what":"A container for tab items — tablerTabItems","title":"A container for tab items — tablerTabItems","text":"container tab items","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTabItems.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"A container for tab items — tablerTabItems","text":"","code":"tablerTabItems(...)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTabItems.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"A container for tab items — tablerTabItems","text":"... Items put container. item tablerTabItem.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTable.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 table container — tablerTable","title":"Create a Boostrap 4 table container — tablerTable","text":"Build tabler table container","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTable.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 table container — tablerTable","text":"","code":"tablerTable(..., title = NULL, width = 4)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTable.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 table container — tablerTable","text":"... Slot tablerTableItem. title Card wrapper title. width Card wrapper width.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTable.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 table container — tablerTable","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTable.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create a Boostrap 4 table container — tablerTable","text":"","code":"if(interactive()){ library(shiny) library(tablerDash) shiny::shinyApp( ui = tablerDashPage( navbar = NULL, footer = NULL, title = \"test\", body = tablerDashBody( tablerTable( title = \"tablerTable\", tablerTableItem( left = tablerTag(name = \"Tag\"), right = tablerTag(name = \"Tag\", href = \"https://www.google.com\") ), tablerTableItem(right = tablerStatus(color = \"red\")), tablerTableItem( left = tablerAvatarList( stacked = TRUE, tablerAvatar( name = \"DG\", size = \"xxl\" ), tablerAvatar( name = \"DG\", color = \"orange\" ), tablerAvatar( name = \"DG\", status = \"warning\" ), tablerAvatar(url = \"https://image.flaticon.com/icons/svg/145/145852.svg\") ) ) ) ) ), server = function(input, output) {} ) }"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTableItem.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 table item — tablerTableItem","title":"Create a Boostrap 4 table item — tablerTableItem","text":"Build tabler table item","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTableItem.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 table item — tablerTableItem","text":"","code":"tablerTableItem(left = NULL, right = NULL)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTableItem.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 table item — tablerTableItem","text":"left Left elements. right Right elements.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTableItem.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 table item — tablerTableItem","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTag.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 tag — tablerTag","title":"Create a Boostrap 4 tag — tablerTag","text":"Build tabler tag","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTag.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 tag — tablerTag","text":"","code":"tablerTag( name, href = NULL, rounded = FALSE, color = NULL, addon = NULL, addonColor = NULL )"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTag.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 tag — tablerTag","text":"name Tag name. href Tag external link. rounded Whether tag rounded. FALSE default. color Tag color. See https://preview.tabler.io/docs/colors.html. addon Tag addon (right side). addonColor Addon background color. See https://preview.tabler.io/docs/colors.html.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTag.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 tag — tablerTag","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTag.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create a Boostrap 4 tag — tablerTag","text":"","code":"if(interactive()){ library(shiny) library(tablerDash) shiny::shinyApp( ui = tablerDashPage( navbar = NULL, footer = NULL, title = \"test\", body = tablerDashBody( tablerTag(name = \"Tag\"), tablerTag(name = \"Tag\", href = \"https://www.google.com\"), tablerTag(name = \"Tag\", rounded = TRUE, color = \"pink\"), tablerTag( name = \"npm\", href = \"https://www.google.com\", color = \"dark\", addon = \"passing\", addonColor = \"warning\" ), tablerTag(name = \"build\", addon = \"passing\", addonColor = \"success\") ) ), server = function(input, output) {} ) }"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTagList.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 tag list — tablerTagList","title":"Create a Boostrap 4 tag list — tablerTagList","text":"Build tabler tag list","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTagList.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 tag list — tablerTagList","text":"","code":"tablerTagList(...)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTagList.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 tag list — tablerTagList","text":"... Slot tablerTag.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTagList.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 tag list — tablerTagList","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTagList.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create a Boostrap 4 tag list — tablerTagList","text":"","code":"if(interactive()){ library(shiny) library(tablerDash) shiny::shinyApp( ui = tablerDashPage( navbar = NULL, footer = NULL, title = \"test\", body = tablerDashBody( tablerTagList( lapply(X = 1:5, FUN = function(i) { tablerTag(name = i) }) ) ) ), server = function(input, output) {} ) }"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTimeline.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 timeline — tablerTimeline","title":"Create a Boostrap 4 timeline — tablerTimeline","text":"Build tabler timeline","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTimeline.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 timeline — tablerTimeline","text":"","code":"tablerTimeline(...)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTimeline.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 timeline — tablerTimeline","text":"... slot tablerTimelineItem.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTimeline.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 timeline — tablerTimeline","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTimeline.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create a Boostrap 4 timeline — tablerTimeline","text":"","code":"if(interactive()){ library(shiny) library(tablerDash) shiny::shinyApp( ui = tablerDashPage( navbar = NULL, footer = NULL, title = \"test\", body = tablerDashBody( tablerTimeline( tablerTimelineItem( title = \"Item 1\", status = \"green\", date = \"now\" ), tablerTimelineItem( title = \"Item 2\", status = NULL, date = \"yesterday\", \"Lorem ipsum dolor sit amet, consectetur adipisicing elit.\" ) ) ) ), server = function(input, output) {} ) }"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTimelineItem.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 timeline item — tablerTimelineItem","title":"Create a Boostrap 4 timeline item — tablerTimelineItem","text":"Build tabler timeline item","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTimelineItem.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 timeline item — tablerTimelineItem","text":"","code":"tablerTimelineItem(..., status = NULL, title, date)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTimelineItem.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 timeline item — tablerTimelineItem","text":"... Item content. status Item status. title Item title. date Event date.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTimelineItem.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 timeline item — tablerTimelineItem","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tagAssert.html","id":null,"dir":"Reference","previous_headings":"","what":"Assert that a tag has specified properties — tagAssert","title":"Assert that a tag has specified properties — tagAssert","text":"Assert tag specified properties","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tagAssert.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Assert that a tag has specified properties — tagAssert","text":"","code":"tagAssert(tag, type = NULL, class = NULL, allowUI = TRUE)"},{"path":"https://rinterface.github.io/tablerDash/reference/tagAssert.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Assert that a tag has specified properties — tagAssert","text":"tag tag object. type type tag, like \"div\", \"\", \"span\". class HTML class. allowUI TRUE (default), allow dynamic outputs generated uiOutput htmlOutput. dynamic output provided, tagAssert try validate contents.","code":""},{"path":[]},{"path":"https://rinterface.github.io/tablerDash/news/index.html","id":"documentation-0-1-5-9000","dir":"Changelog","previous_headings":"","what":"Documentation","title":"tablerDash 0.1.5.9000","text":"Upgrade pkgdown setup. Added shinylive support.","code":""},{"path":"https://rinterface.github.io/tablerDash/news/index.html","id":"bug-fix-0-1-5-9000","dir":"Changelog","previous_headings":"","what":"Bug Fix","title":"tablerDash 0.1.5.9000","text":"Resizing tablerCard() triggers shown javascript event, telling shiny update size contained object. Fix overflow issue tablerCard(). now correctly applied card body, header always visible scrolling.","code":""},{"path":"https://rinterface.github.io/tablerDash/news/index.html","id":"tablerdash-010","dir":"Changelog","previous_headings":"","what":"tablerDash 0.1.0","title":"tablerDash 0.1.0","text":"CRAN release: 2019-03-08 first release","code":""}] +[{"path":[]},{"path":"https://rinterface.github.io/tablerDash/CODE_OF_CONDUCT.html","id":"our-pledge","dir":"","previous_headings":"","what":"Our Pledge","title":"Contributor Covenant Code of Conduct","text":"members, contributors, leaders pledge make participation community harassment-free experience everyone, regardless age, body size, visible invisible disability, ethnicity, sex characteristics, gender identity expression, level experience, education, socio-economic status, nationality, personal appearance, race, religion, sexual identity orientation. pledge act interact ways contribute open, welcoming, diverse, inclusive, healthy community.","code":""},{"path":"https://rinterface.github.io/tablerDash/CODE_OF_CONDUCT.html","id":"our-standards","dir":"","previous_headings":"","what":"Our Standards","title":"Contributor Covenant Code of Conduct","text":"Examples behavior contributes positive environment community include: Demonstrating empathy kindness toward people respectful differing opinions, viewpoints, experiences Giving gracefully accepting constructive feedback Accepting responsibility apologizing affected mistakes, learning experience Focusing best just us individuals, overall community Examples unacceptable behavior include: use sexualized language imagery, sexual attention advances kind Trolling, insulting derogatory comments, personal political attacks Public private harassment Publishing others’ private information, physical email address, without explicit permission conduct reasonably considered inappropriate professional setting","code":""},{"path":"https://rinterface.github.io/tablerDash/CODE_OF_CONDUCT.html","id":"enforcement-responsibilities","dir":"","previous_headings":"","what":"Enforcement Responsibilities","title":"Contributor Covenant Code of Conduct","text":"Community leaders responsible clarifying enforcing standards acceptable behavior take appropriate fair corrective action response behavior deem inappropriate, threatening, offensive, harmful. Community leaders right responsibility remove, edit, reject comments, commits, code, wiki edits, issues, contributions aligned Code Conduct, communicate reasons moderation decisions appropriate.","code":""},{"path":"https://rinterface.github.io/tablerDash/CODE_OF_CONDUCT.html","id":"scope","dir":"","previous_headings":"","what":"Scope","title":"Contributor Covenant Code of Conduct","text":"Code Conduct applies within community spaces, also applies individual officially representing community public spaces. Examples representing community include using official e-mail address, posting via official social media account, acting appointed representative online offline event.","code":""},{"path":"https://rinterface.github.io/tablerDash/CODE_OF_CONDUCT.html","id":"enforcement","dir":"","previous_headings":"","what":"Enforcement","title":"Contributor Covenant Code of Conduct","text":"Instances abusive, harassing, otherwise unacceptable behavior may reported community leaders responsible enforcement [INSERT CONTACT METHOD]. complaints reviewed investigated promptly fairly. community leaders obligated respect privacy security reporter incident.","code":""},{"path":"https://rinterface.github.io/tablerDash/CODE_OF_CONDUCT.html","id":"enforcement-guidelines","dir":"","previous_headings":"","what":"Enforcement Guidelines","title":"Contributor Covenant Code of Conduct","text":"Community leaders follow Community Impact Guidelines determining consequences action deem violation Code Conduct:","code":""},{"path":"https://rinterface.github.io/tablerDash/CODE_OF_CONDUCT.html","id":"id_1-correction","dir":"","previous_headings":"Enforcement Guidelines","what":"1. Correction","title":"Contributor Covenant Code of Conduct","text":"Community Impact: Use inappropriate language behavior deemed unprofessional unwelcome community. Consequence: private, written warning community leaders, providing clarity around nature violation explanation behavior inappropriate. public apology may requested.","code":""},{"path":"https://rinterface.github.io/tablerDash/CODE_OF_CONDUCT.html","id":"id_2-warning","dir":"","previous_headings":"Enforcement Guidelines","what":"2. Warning","title":"Contributor Covenant Code of Conduct","text":"Community Impact: violation single incident series actions. Consequence: warning consequences continued behavior. interaction people involved, including unsolicited interaction enforcing Code Conduct, specified period time. includes avoiding interactions community spaces well external channels like social media. Violating terms may lead temporary permanent ban.","code":""},{"path":"https://rinterface.github.io/tablerDash/CODE_OF_CONDUCT.html","id":"id_3-temporary-ban","dir":"","previous_headings":"Enforcement Guidelines","what":"3. Temporary Ban","title":"Contributor Covenant Code of Conduct","text":"Community Impact: serious violation community standards, including sustained inappropriate behavior. Consequence: temporary ban sort interaction public communication community specified period time. public private interaction people involved, including unsolicited interaction enforcing Code Conduct, allowed period. Violating terms may lead permanent ban.","code":""},{"path":"https://rinterface.github.io/tablerDash/CODE_OF_CONDUCT.html","id":"id_4-permanent-ban","dir":"","previous_headings":"Enforcement Guidelines","what":"4. Permanent Ban","title":"Contributor Covenant Code of Conduct","text":"Community Impact: Demonstrating pattern violation community standards, including sustained inappropriate behavior, harassment individual, aggression toward disparagement classes individuals. Consequence: permanent ban sort public interaction within community.","code":""},{"path":"https://rinterface.github.io/tablerDash/CODE_OF_CONDUCT.html","id":"attribution","dir":"","previous_headings":"","what":"Attribution","title":"Contributor Covenant Code of Conduct","text":"Code Conduct adapted Contributor Covenant, version 2.0, available https://www.contributor-covenant.org/version/2/0/ code_of_conduct.html. Community Impact Guidelines inspired Mozilla’s code conduct enforcement ladder. answers common questions code conduct, see FAQ https://www.contributor-covenant.org/faq. Translations available https:// www.contributor-covenant.org/translations.","code":""},{"path":"https://rinterface.github.io/tablerDash/authors.html","id":null,"dir":"","previous_headings":"","what":"Authors","title":"Authors and Citation","text":"David Granjon. Author, maintainer. RinteRface. Copyright holder. codecalm. Contributor, copyright holder. tabler template Bootstrap 4 Winston Chang. Contributor, copyright holder. Utils functions shinydashboard","code":""},{"path":"https://rinterface.github.io/tablerDash/authors.html","id":"citation","dir":"","previous_headings":"","what":"Citation","title":"Authors and Citation","text":"Granjon D (2024). tablerDash: 'Tabler' API 'Shiny'. R package version 0.1.5.9000, https://github.com/RinteRface/tablerDash/, https://rinterface.github.io/tablerDash/.","code":"@Manual{, title = {tablerDash: 'Tabler' API for 'Shiny'}, author = {David Granjon}, year = {2024}, note = {R package version 0.1.5.9000, https://github.com/RinteRface/tablerDash/}, url = {https://rinterface.github.io/tablerDash/}, }"},{"path":"https://rinterface.github.io/tablerDash/index.html","id":"tablerdash-","dir":"","previous_headings":"","what":"Tabler API for Shiny","title":"Tabler API for Shiny","text":"Tabler dashboard template shiny Bootstrap 4 See https://tabler.io original template.","code":""},{"path":"https://rinterface.github.io/tablerDash/index.html","id":"installation","dir":"","previous_headings":"","what":"Installation","title":"Tabler API for Shiny","text":"package CRAN:","code":"# latest devel version devtools::install_github(\"RinteRface/tablerDash\") # CRAN version install.packages(\"tablerDash\")"},{"path":"https://rinterface.github.io/tablerDash/index.html","id":"demo","dir":"","previous_headings":"","what":"Demo","title":"Tabler API for Shiny","text":"Toggle code","code":"library(shiny) library(tablerDash) library(echarts4r) library(shinyWidgets) library(magrittr) library(palmerpenguins) # datas flowGl vectors <- expand.grid(x = -3:3, y = -3:3) mu <- 1 vectors$sx <- vectors$y vectors$sy <- mu * (1 - vectors$x^2) * vectors$y - vectors$x vectors$color <- log10(runif(nrow(vectors), 1, 10)) # cards flowCard <- tablerCard( title = \"FlowGl Chart\", closable = FALSE, zoomable = TRUE, options = tagList( tablerAvatar(status = \"lime\", url = \"https://preview.tabler.io/static/avatars/000m.jpg\") ), width = 12, echarts4rOutput(\"flowGl\"), footer = tablerTag(name = \"build\", addon = \"passing\", addonColor = \"success\") ) profileCard <- tablerProfileCard( width = 12, title = \"Dyann Escala\", subtitle = \"Mechanical Systems Engineer\", src = \"https://preview.tabler.io/static/photos/finances-us-dollars-and-bitcoins-currency-money.jpg\", tablerSocialLinks( tablerSocialLink( name = \"facebook\", href = \"https://www.facebook.com\", icon = \"facebook\" ), tablerSocialLink( name = \"twitter\", href = \"https://www.twitter.com\", icon = \"twitter\" ) ) ) # app shiny::shinyApp( ui = tablerDashPage( navbar = tablerDashNav( id = \"mymenu\", src = \"https://raw.githubusercontent.com/tabler/tabler/dev/src/static/logo.svg\", navMenu = tablerNavMenu( tablerNavMenuItem( tabName = \"Home\", icon = \"home\", \"Home\" ), tablerNavMenuItem( tabName = \"Test\", icon = \"box\", \"Test\" ) ), tablerDropdown( tablerDropdownItem( title = \"Item 1 title\", href = \"http://google.com\", status = \"danger\", date = \"now\", \"This is the first dropdown item\" ), tablerDropdownItem( status = \"warning\", \"This is the second dropdown item\", date = \"yesterday\" ), tablerDropdownItem( title = \"Item 3 title\", \"This is the third dropdown item\" ) ) ), footer = tablerDashFooter( tablerIcon(name = \"maestro\", lib = \"payment\"), tablerIcon(name = \"mastercard\", lib = \"payment\"), copyrights = \"@David Granjon, 2024\" ), title = \"tablerDash\", body = tablerDashBody( chooseSliderSkin(\"Modern\"), tablerTabItems( tablerTabItem( tabName = \"Home\", fluidRow( column( width = 4, profileCard, numericInput( inputId = \"totalStorage\", label = \"Enter storage capacity\", value = 1000), uiOutput(\"info\") ), column( width = 8, flowCard ) ), fluidRow( column( width = 8, tablerCard( status = \"primary\", statusSide = \"top\", width = 12, tablerTimeline( tablerTimelineItem( title = \"Item 1\", status = \"green\", date = \"now\" ), tablerTimelineItem( title = \"Item 2\", status = NULL, date = \"yesterday\", \"Lorem ipsum dolor sit amet, consectetur adipisicing elit.\" ) ) ) ), column( width = 4, tablerStatCard( value = 43, title = \"Followers\", trend = -10, width = 12 ) ) ) ), tablerTabItem( tabName = \"Test\", tablerCard( title = \"Plots\", plotOutput(\"distPlot\"), status = \"info\", statusSide = \"left\", width = 12, footer = tagList( column( width = 12, align = \"center\", sliderInput( \"obs\", \"Number of observations:\", min = 0, max = 1000, value = 500 ) ) ) ), tablerCard( title = \"Tables\", selectInput( \"variable\", \"Variables to show:\", choices = colnames(penguins), selected = colnames(penguins), multiple = TRUE ), tableOutput(\"data\"), width = 12, overflow = TRUE ), tablerCard( width = 12, echarts4rOutput(\"gauge\", height = \"300px\"), sliderInput( \"gaugeVal\", \"Gauge Value:\", min = 0, max = 100, value = 50 ) ) ) ) ) ), server = function(input, output) { output$distPlot <- renderPlot({ hist(rnorm(input$obs)) }) output$data <- renderTable({ penguins[, input$variable, drop = FALSE] }, rownames = TRUE) output$flowGl <- renderEcharts4r({ vectors %>% e_charts(x) %>% e_flow_gl(y, sx, sy, color) %>% e_visual_map( min = 0, max = 1, # log 10 dimension = 4, # x = 0, y = 1, sx = 3, sy = 4 show = FALSE, # hide inRange = list( color = c('#313695', '#4575b4', '#74add1', '#abd9e9', '#e0f3f8', '#ffffbf', '#fee090', '#fdae61', '#f46d43', '#d73027', '#a50026') ) ) %>% e_x_axis( splitLine = list(show = FALSE) ) %>% e_y_axis( splitLine = list(show = FALSE) ) }) output$info <- renderUI({ tablerInfoCard( width = 12, value = paste0(input$totalStorage, \"GB\"), status = \"success\", icon = \"database\", description = \"Total Storage Capacity\" ) }) output$gauge <- renderEcharts4r({ e_charts() %>% e_gauge(as.numeric(input$gaugeVal), \"%\") }) } )"},{"path":"https://rinterface.github.io/tablerDash/index.html","id":"issues","dir":"","previous_headings":"","what":"Issues","title":"Tabler API for Shiny","text":"Issues listed .","code":""},{"path":"https://rinterface.github.io/tablerDash/index.html","id":"code-of-conduct","dir":"","previous_headings":"","what":"Code of Conduct","title":"Tabler API for Shiny","text":"Please note tablerDash project released Contributor Code Conduct. contributing project, agree abide terms.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/create_app_link.html","id":null,"dir":"Reference","previous_headings":"","what":"Create shinylive iframe — create_app_link","title":"Create shinylive iframe — create_app_link","text":"Useful pkgdown website","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/create_app_link.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create shinylive iframe — create_app_link","text":"","code":"create_app_link(url, mode = c(\"app\", \"editor\"), header = TRUE)"},{"path":"https://rinterface.github.io/tablerDash/reference/create_app_link.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create shinylive iframe — create_app_link","text":"url app url. shinylive link. mode display shinylive app. Default app mode. header Whether display shinylive header. Default TRUE.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerAlert.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 alert — tablerAlert","title":"Create a Boostrap 4 alert — tablerAlert","text":"Build tabler alert","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerAlert.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 alert — tablerAlert","text":"","code":"tablerAlert(..., title = NULL, status, icon = NULL, closable = TRUE)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerAlert.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 alert — tablerAlert","text":"... Alert content. title Alert title. status Alert status. See https://preview.tabler.io/docs/colors.html. icon Alert icon. closable Whether close alert. TRUE default.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerAlert.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 alert — tablerAlert","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerAlert.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create a Boostrap 4 alert — tablerAlert","text":"","code":"if(interactive()){ library(shiny) library(tablerDash) shiny::shinyApp( ui = tablerDashPage( navbar = NULL, footer = NULL, title = \"test\", body = tablerDashBody( tablerAlert( title = \"Alert\", \"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Lorem ipsum dolor sit amet, consectetur adipisicing elit.\", icon = \"alert-triangle\", status = \"info\" ) ) ), server = function(input, output) {} ) }"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerAvatar.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 avatar — tablerAvatar","title":"Create a Boostrap 4 avatar — tablerAvatar","text":"Build tabler avatar","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerAvatar.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 avatar — tablerAvatar","text":"","code":"tablerAvatar(name = NULL, url = NULL, size = NULL, status = NULL, color = NULL)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerAvatar.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 avatar — tablerAvatar","text":"name Avatar placeholder. NULL, url used. url Avatar image . NULL, name used. size Avatar size. NULL, \"sm\", \"md\", \"lg\", \"xl\" \"xxl\". status Avatar status. See https://preview.tabler.io/docs/colors.html valid statuses. color Avatar background color. See https://preview.tabler.io/docs/colors.html valid colors.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerAvatar.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 avatar — tablerAvatar","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerAvatar.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create a Boostrap 4 avatar — tablerAvatar","text":"","code":"if(interactive()){ library(shiny) library(tablerDash) shiny::shinyApp( ui = tablerDashPage( navbar = NULL, footer = NULL, title = \"test\", body = tablerDashBody( tablerAvatar( name = \"DG\", size = \"xxl\" ), tablerAvatar( name = \"DG\", color = \"orange\" ), tablerAvatar( name = \"DG\", status = \"warning\" ), tablerAvatar(url = \"https://image.flaticon.com/icons/svg/145/145852.svg\") ) ), server = function(input, output) {} ) }"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerAvatarList.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 avatar list — tablerAvatarList","title":"Create a Boostrap 4 avatar list — tablerAvatarList","text":"Build tabler avatar list","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerAvatarList.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 avatar list — tablerAvatarList","text":"","code":"tablerAvatarList(..., stacked = FALSE)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerAvatarList.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 avatar list — tablerAvatarList","text":"... Slot tablerAvatar. stacked Whether stack avatars. FALSE default.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerAvatarList.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 avatar list — tablerAvatarList","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerAvatarList.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create a Boostrap 4 avatar list — tablerAvatarList","text":"","code":"if(interactive()){ library(shiny) library(tablerDash) shiny::shinyApp( ui = tablerDashPage( navbar = NULL, footer = NULL, title = \"test\", body = tablerDashBody( tablerAvatarList( stacked = TRUE, tablerAvatar( name = \"DG\", size = \"xxl\" ), tablerAvatar( name = \"DG\", color = \"orange\" ), tablerAvatar( name = \"DG\", status = \"warning\" ), tablerAvatar(url = \"https://image.flaticon.com/icons/svg/145/145852.svg\") ) ) ), server = function(input, output) {} ) }"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerBlogCard.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 blog card — tablerBlogCard","title":"Create a Boostrap 4 blog card — tablerBlogCard","text":"Build tabler blog card","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerBlogCard.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 blog card — tablerBlogCard","text":"","code":"tablerBlogCard( ..., title = NULL, author = NULL, date = NULL, href = NULL, src = NULL, avatarUrl = NULL, width = 4, horizontal = FALSE )"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerBlogCard.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 blog card — tablerBlogCard","text":"... elements. title Title. author Blog post author. date Date. href External link. src Image url. avatarUrl Avatar image. width Card width. 4 default. horizontal Whether card horizontally displayed. FALSE default.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerBlogCard.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 blog card — tablerBlogCard","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerBlogCard.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create a Boostrap 4 blog card — tablerBlogCard","text":"","code":"if(interactive()){ library(shiny) library(tablerDash) shiny::shinyApp( ui = tablerDashPage( navbar = NULL, footer = NULL, title = \"test\", body = tablerDashBody( tablerBlogCard( title = \"Blog Card\", author = \"David\", date = \"Today\", href = \"https://www.google.com\", src = \"https://preview.tabler.io/demo/photos/matt-barrett-339981-500.jpg\", avatarUrl = \"https://image.flaticon.com/icons/svg/145/145842.svg\", width = 6, \"Look, my liege! The Knights Who Say Ni demand a sacrifice! …Are you suggesting that coconuts migr...\" ) ) ), server = function(input, output) {} ) }"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerCard.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 card — tablerCard","title":"Create a Boostrap 4 card — tablerCard","text":"Build tabler card","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerCard.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 card — tablerCard","text":"","code":"tablerCard( ..., title = NULL, options = NULL, footer = NULL, status = NULL, statusSide = c(\"top\", \"left\"), collapsible = TRUE, collapsed = FALSE, closable = TRUE, zoomable = TRUE, width = 6, overflow = FALSE )"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerCard.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 card — tablerCard","text":"... Body content title Card title. NULL, header displayed. options Card extra header elements. footer Card footer. NULL default. displayed NULL. status Card status. NULL default. See https://preview.tabler.io/docs/colors.html valid statuses. statusSide Status side: \"top\" \"left\". collapsible Whether card collapsible. TRUE default. collapsed Whether collapse card start. FALSE default. closable Whether card closable. TRUE default. zoomable Whether card zoomable. TRUE default. width Card width. 6 default. See Bootstrap grid system. NULL, card full width. overflow Whether set x y overflow. FALSE default. Useful case card contains large tables.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerCard.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 card — tablerCard","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerCard.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create a Boostrap 4 card — tablerCard","text":"","code":"if(interactive()){ library(shiny) library(tablerDash) shiny::shinyApp( ui = tablerDashPage( navbar = NULL, footer = NULL, title = \"test\", body = tablerDashBody( tablerCard( title = \"Card\", sliderInput(\"obs\", \"Number of observations:\", min = 0, max = 1000, value = 500 ), plotOutput(\"distPlot\"), status = \"success\", statusSide = \"left\" ) ) ), server = function(input, output) { output$distPlot <- renderPlot({ hist(rnorm(input$obs)) }) } ) }"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDashBody.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 dashboard body — tablerDashBody","title":"Create a Boostrap 4 dashboard body — tablerDashBody","text":"Build tabler dashboard body","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDashBody.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 dashboard body — tablerDashBody","text":"","code":"tablerDashBody(...)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDashBody.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 dashboard body — tablerDashBody","text":"... Body content, slot tablerTabItems.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDashBody.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 dashboard body — tablerDashBody","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDashFooter.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 dashboard footer — tablerDashFooter","title":"Create a Boostrap 4 dashboard footer — tablerDashFooter","text":"Build adminLTE3 dashboard footer","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDashFooter.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 dashboard footer — tablerDashFooter","text":"","code":"tablerDashFooter(..., copyrights = NULL)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDashFooter.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 dashboard footer — tablerDashFooter","text":"... Left text. copyrights Copyrights, .","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDashFooter.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 dashboard footer — tablerDashFooter","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDashGallery.html","id":null,"dir":"Reference","previous_headings":"","what":"Launch the tablerDash Gallery — tablerDashGallery","title":"Launch the tablerDash Gallery — tablerDashGallery","text":"gallery components available tablerDash.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDashGallery.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Launch the tablerDash Gallery — tablerDashGallery","text":"","code":"tablerDashGallery()"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDashGallery.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Launch the tablerDash Gallery — tablerDashGallery","text":"","code":"if (interactive()) { tablerDashGallery() }"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDashNav.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 dashboard navbar — tablerDashNav","title":"Create a Boostrap 4 dashboard navbar — tablerDashNav","text":"Build tabler dashboard page","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDashNav.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 dashboard navbar — tablerDashNav","text":"","code":"tablerDashNav(id, ..., src = NULL, navMenu = NULL)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDashNav.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 dashboard navbar — tablerDashNav","text":"id Navbar id. ... Navbar content. src Brand image url path. navMenu Slot tablerNavMenu","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDashNav.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 dashboard navbar — tablerDashNav","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDashPage.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 dashboard page — tablerDashPage","title":"Create a Boostrap 4 dashboard page — tablerDashPage","text":"Build tabler dashboard page","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDashPage.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 dashboard page — tablerDashPage","text":"","code":"tablerDashPage( navbar = NULL, body = NULL, footer = NULL, title = NULL, enable_preloader = FALSE, loading_duration = 2 )"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDashPage.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 dashboard page — tablerDashPage","text":"navbar Slot tablerDashNav. body Slot tablerDashBody. footer Slot tablerDashFooter. title App title. enable_preloader Whether enable page loader. FALSE default. loading_duration Loader duration seconds. 2s default.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDashPage.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 dashboard page — tablerDashPage","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDashPage.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create a Boostrap 4 dashboard page — tablerDashPage","text":"","code":"if(interactive()){ library(shiny) library(tablerDash) shiny::shinyApp( ui = tablerDashPage( navbar = tablerDashNav(), footer = tablerDashFooter(), title = \"test\", body = tablerDashBody() ), server = function(input, output) {} ) }"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDropdown.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 dashboard dropdown container — tablerDropdown","title":"Create a Boostrap 4 dashboard dropdown container — tablerDropdown","text":"Build tabler dashboard dropdown container","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDropdown.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 dashboard dropdown container — tablerDropdown","text":"","code":"tablerDropdown(..., icon = \"bell\", collapsed = TRUE)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDropdown.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 dashboard dropdown container — tablerDropdown","text":"... Slot tablerDropdownItem. icon Dropdown icon. collapsed Whether collapse dropdown. TRUE default.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDropdown.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 dashboard dropdown container — tablerDropdown","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDropdownItem.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 dashboard dropdown container — tablerDropdownItem","title":"Create a Boostrap 4 dashboard dropdown container — tablerDropdownItem","text":"Build tabler dashboard dropdown container","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDropdownItem.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 dashboard dropdown container — tablerDropdownItem","text":"","code":"tablerDropdownItem( ..., title = NULL, href = NULL, url = NULL, status = NULL, date = NULL )"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDropdownItem.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 dashboard dropdown container — tablerDropdownItem","text":"... Item content. title Item title. href External link. url Author image. status Item status. url NULL. date Item date.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerDropdownItem.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 dashboard dropdown container — tablerDropdownItem","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerIcon.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 icon — tablerIcon","title":"Create a Boostrap 4 icon — tablerIcon","text":"Build tabler icon","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerIcon.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 icon — tablerIcon","text":"","code":"tablerIcon(name, lib = c(\"feather\", \"font-awesome\", \"payment\"))"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerIcon.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 icon — tablerIcon","text":"name Name icon. See https://preview.tabler.io/icons.html valid icons. lib Icon library (\"feather\", \"font-awesome\", \"payment\").","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerIcon.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 icon — tablerIcon","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerInfoCard.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 info card — tablerInfoCard","title":"Create a Boostrap 4 info card — tablerInfoCard","text":"Build tabler info card","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerInfoCard.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 info card — tablerInfoCard","text":"","code":"tablerInfoCard(value, description = NULL, status, icon, href = NULL, width = 4)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerInfoCard.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 info card — tablerInfoCard","text":"value Card value. description Percentage increase/decrease. status Card status. See https://preview.tabler.io/docs/colors.html. icon Card icon. href External link. width Card width. 4 default.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerInfoCard.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 info card — tablerInfoCard","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerInfoCard.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create a Boostrap 4 info card — tablerInfoCard","text":"","code":"if(interactive()){ library(shiny) library(tablerDash) shiny::shinyApp( ui = tablerDashPage( navbar = NULL, footer = NULL, title = \"test\", body = tablerDashBody( tablerInfoCard( value = \"132 sales\", status = \"danger\", icon = \"dollar-sign\", description = \"12 waiting payments\" ) ) ), server = function(input, output) {} ) }"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerList.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 list container — tablerList","title":"Create a Boostrap 4 list container — tablerList","text":"Build tabler list container","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerList.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 list container — tablerList","text":"","code":"tablerList(...)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerList.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 list container — tablerList","text":"... Slot tablerListItem.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerList.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 list container — tablerList","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerList.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create a Boostrap 4 list container — tablerList","text":"","code":"if(interactive()){ library(shiny) library(tablerDash) shiny::shinyApp( ui = tablerDashPage( navbar = NULL, footer = NULL, title = \"test\", body = tablerDashBody( tablerCard( title = \"tablerList\", tablerList( tablerListItem( tablerTag(name = \"Tag\"), tablerTag(name = \"Tag\", href = \"https://www.google.com\"), tablerTag(name = \"Tag\", rounded = TRUE, color = \"pink\") ), tablerListItem(tablerStatus(color = \"red\")), tablerListItem( tablerAvatarList( stacked = TRUE, tablerAvatar( name = \"DG\", size = \"xxl\" ), tablerAvatar( name = \"DG\", color = \"orange\" ), tablerAvatar( name = \"DG\", status = \"warning\" ), tablerAvatar(url = \"https://image.flaticon.com/icons/svg/145/145852.svg\") ) ) ) ) ) ), server = function(input, output) {} ) }"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerListItem.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 list item — tablerListItem","title":"Create a Boostrap 4 list item — tablerListItem","text":"Build tabler list item","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerListItem.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 list item — tablerListItem","text":"","code":"tablerListItem(...)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerListItem.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 list item — tablerListItem","text":"... Slot HTML element.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerListItem.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 list item — tablerListItem","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerMediaCard.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 media card — tablerMediaCard","title":"Create a Boostrap 4 media card — tablerMediaCard","text":"Build tabler media card","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerMediaCard.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 media card — tablerMediaCard","text":"","code":"tablerMediaCard( ..., title = NULL, date = NULL, href = NULL, src = NULL, avatarUrl = NULL, width = 4 )"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerMediaCard.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 media card — tablerMediaCard","text":"... elements. title Title. date Date. href External link. src Image url. avatarUrl Avatar image. width Card width. 4 default.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerMediaCard.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 media card — tablerMediaCard","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerMediaCard.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create a Boostrap 4 media card — tablerMediaCard","text":"","code":"if(interactive()){ library(shiny) library(tablerDash) shiny::shinyApp( ui = tablerDashPage( navbar = NULL, footer = NULL, title = \"test\", body = tablerDashBody( tablerMediaCard( title = \"Media Card\", date = \"Today\", href = \"https://www.google.com\", src = \"https://preview.tabler.io/demo/photos/matt-barrett-339981-500.jpg\", avatarUrl = \"https://image.flaticon.com/icons/svg/145/145842.svg\", width = 6 ) ) ), server = function(input, output) {} ) }"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerNavMenu.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 dashboard navbar menu — tablerNavMenu","title":"Create a Boostrap 4 dashboard navbar menu — tablerNavMenu","text":"Build tabler dashboard main navbar menu","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerNavMenu.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 dashboard navbar menu — tablerNavMenu","text":"","code":"tablerNavMenu(...)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerNavMenu.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 dashboard navbar menu — tablerNavMenu","text":"... Slot tablerNavMenuItem.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerNavMenu.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 dashboard navbar menu — tablerNavMenu","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerNavMenuItem.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 dashboard navbar menu item — tablerNavMenuItem","title":"Create a Boostrap 4 dashboard navbar menu item — tablerNavMenuItem","text":"Build tabler dashboard navbar menu item","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerNavMenuItem.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 dashboard navbar menu item — tablerNavMenuItem","text":"","code":"tablerNavMenuItem(..., tabName = NULL, icon = NULL)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerNavMenuItem.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 dashboard navbar menu item — tablerNavMenuItem","text":"... Item name. tabName correspond exactly tabName given tablerTabItem. icon Item icon.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerNavMenuItem.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 dashboard navbar menu item — tablerNavMenuItem","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerProfileCard.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 profile card — tablerProfileCard","title":"Create a Boostrap 4 profile card — tablerProfileCard","text":"Build tabler profile card","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerProfileCard.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 profile card — tablerProfileCard","text":"","code":"tablerProfileCard( title = NULL, subtitle = NULL, background = NULL, src = NULL, socials = NULL, width = 4 )"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerProfileCard.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 profile card — tablerProfileCard","text":"title Profile title. subtitle Card subtitle. background Card background url path. src User profile image. socials Slot tablerSocialLinks tablerSocialLink. width Card width. 4 default.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerProfileCard.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 profile card — tablerProfileCard","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerProfileCard.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create a Boostrap 4 profile card — tablerProfileCard","text":"","code":"if(interactive()){ library(shiny) library(tablerDash) shiny::shinyApp( ui = tablerDashPage( navbar = NULL, footer = NULL, title = \"test\", body = tablerDashBody( tablerProfileCard( title = \"Peter Richards\", subtitle = \"Big belly rude boy, million dollar hustler. Unemployed.\", background = \"https://preview.tabler.io/demo/photos/ilnur-kalimullin-218996-500.jpg\", src = \"https://preview.tabler.io/demo/faces/male/16.jpg\", tablerSocialLinks( tablerSocialLink( name = \"facebook\", href = \"https://www.facebook.com\", icon = \"facebook\" ), tablerSocialLink( name = \"twitter\", href = \"https://www.twitter.com\", icon = \"twitter\" ) ) ) ) ), server = function(input, output) {} ) }"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerProgress.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 progress bar — tablerProgress","title":"Create a Boostrap 4 progress bar — tablerProgress","text":"Build tabler progress bar","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerProgress.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 progress bar — tablerProgress","text":"","code":"tablerProgress(value, status = NULL, size = NULL)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerProgress.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 progress bar — tablerProgress","text":"value Progress value. status Progress status. See https://preview.tabler.io/docs/colors.html. size Progress bar size: NULL, \"xs\", \"sm\", \"md\".","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerProgress.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 progress bar — tablerProgress","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerProgress.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create a Boostrap 4 progress bar — tablerProgress","text":"","code":"if(interactive()){ library(shiny) library(tablerDash) shiny::shinyApp( ui = tablerDashPage( navbar = NULL, footer = NULL, title = \"test\", body = tablerDashBody( tablerProgress(value = 10, size = \"xs\"), tablerProgress(value = 90, status = \"red\", size = \"sm\") ) ), server = function(input, output) {} ) }"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerSocialLink.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 social link — tablerSocialLink","title":"Create a Boostrap 4 social link — tablerSocialLink","text":"Build tabler social link","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerSocialLink.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 social link — tablerSocialLink","text":"","code":"tablerSocialLink(name = NULL, href = NULL, icon)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerSocialLink.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 social link — tablerSocialLink","text":"name Link tooltip name. href External link. icon Icon (font awesome).","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerSocialLink.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 social link — tablerSocialLink","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerSocialLinks.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 social link list — tablerSocialLinks","title":"Create a Boostrap 4 social link list — tablerSocialLinks","text":"Build tabler social link list","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerSocialLinks.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 social link list — tablerSocialLinks","text":"","code":"tablerSocialLinks(...)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerSocialLinks.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 social link list — tablerSocialLinks","text":"... Slot tablerSocialLink.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerSocialLinks.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 social link list — tablerSocialLinks","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerSocialLinks.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create a Boostrap 4 social link list — tablerSocialLinks","text":"","code":"if(interactive()){ library(shiny) library(tablerDash) shiny::shinyApp( ui = tablerDashPage( navbar = NULL, footer = NULL, title = \"test\", body = tablerDashBody( tablerSocialLinks( tablerSocialLink( name = \"facebook\", href = \"https://www.facebook.com\", icon = \"facebook\" ), tablerSocialLink( name = \"twitter\", href = \"https://www.twitter.com\", icon = \"twitter\" ) ) ) ), server = function(input, output) {} ) }"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerStatCard.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 stat card — tablerStatCard","title":"Create a Boostrap 4 stat card — tablerStatCard","text":"Build tabler stat card","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerStatCard.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 stat card — tablerStatCard","text":"","code":"tablerStatCard(value, title, trend = NULL, width = 3)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerStatCard.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 stat card — tablerStatCard","text":"value Card value. title Card title. trend Percentage increase/decrease. width Card width. 3 default.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerStatCard.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 stat card — tablerStatCard","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerStatCard.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create a Boostrap 4 stat card — tablerStatCard","text":"","code":"if(interactive()){ library(shiny) library(tablerDash) shiny::shinyApp( ui = tablerDashPage( navbar = NULL, footer = NULL, title = \"test\", body = tablerDashBody( tablerStatCard( value = 43, title = \"Followers\", trend = -10 ) ) ), server = function(input, output) {} ) }"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerStatus.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 status — tablerStatus","title":"Create a Boostrap 4 status — tablerStatus","text":"Build tabler status","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerStatus.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 status — tablerStatus","text":"","code":"tablerStatus(color)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerStatus.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 status — tablerStatus","text":"color Status color. See https://preview.tabler.io/docs/colors.html.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerStatus.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 status — tablerStatus","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerStatus.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create a Boostrap 4 status — tablerStatus","text":"","code":"if(interactive()){ library(shiny) library(tablerDash) shiny::shinyApp( ui = tablerDashPage( navbar = NULL, footer = NULL, title = \"test\", body = tablerDashBody( tablerStatus(color = \"lime\") ) ), server = function(input, output) {} ) }"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTabItem.html","id":null,"dir":"Reference","previous_headings":"","what":"One tab to put inside a tab items container — tablerTabItem","title":"One tab to put inside a tab items container — tablerTabItem","text":"One tab put inside tab items container","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTabItem.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"One tab to put inside a tab items container — tablerTabItem","text":"","code":"tablerTabItem(tabName = NULL, ...)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTabItem.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"One tab to put inside a tab items container — tablerTabItem","text":"tabName name tab. must correspond tabName tablerNavMenuItem. ... Contents tab.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTabItems.html","id":null,"dir":"Reference","previous_headings":"","what":"A container for tab items — tablerTabItems","title":"A container for tab items — tablerTabItems","text":"container tab items","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTabItems.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"A container for tab items — tablerTabItems","text":"","code":"tablerTabItems(...)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTabItems.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"A container for tab items — tablerTabItems","text":"... Items put container. item tablerTabItem.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTable.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 table container — tablerTable","title":"Create a Boostrap 4 table container — tablerTable","text":"Build tabler table container","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTable.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 table container — tablerTable","text":"","code":"tablerTable(..., title = NULL, width = 4)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTable.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 table container — tablerTable","text":"... Slot tablerTableItem. title Card wrapper title. width Card wrapper width.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTable.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 table container — tablerTable","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTable.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create a Boostrap 4 table container — tablerTable","text":"","code":"if(interactive()){ library(shiny) library(tablerDash) shiny::shinyApp( ui = tablerDashPage( navbar = NULL, footer = NULL, title = \"test\", body = tablerDashBody( tablerTable( title = \"tablerTable\", tablerTableItem( left = tablerTag(name = \"Tag\"), right = tablerTag(name = \"Tag\", href = \"https://www.google.com\") ), tablerTableItem(right = tablerStatus(color = \"red\")), tablerTableItem( left = tablerAvatarList( stacked = TRUE, tablerAvatar( name = \"DG\", size = \"xxl\" ), tablerAvatar( name = \"DG\", color = \"orange\" ), tablerAvatar( name = \"DG\", status = \"warning\" ), tablerAvatar(url = \"https://image.flaticon.com/icons/svg/145/145852.svg\") ) ) ) ) ), server = function(input, output) {} ) }"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTableItem.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 table item — tablerTableItem","title":"Create a Boostrap 4 table item — tablerTableItem","text":"Build tabler table item","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTableItem.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 table item — tablerTableItem","text":"","code":"tablerTableItem(left = NULL, right = NULL)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTableItem.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 table item — tablerTableItem","text":"left Left elements. right Right elements.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTableItem.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 table item — tablerTableItem","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTag.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 tag — tablerTag","title":"Create a Boostrap 4 tag — tablerTag","text":"Build tabler tag","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTag.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 tag — tablerTag","text":"","code":"tablerTag( name, href = NULL, rounded = FALSE, color = NULL, addon = NULL, addonColor = NULL )"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTag.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 tag — tablerTag","text":"name Tag name. href Tag external link. rounded Whether tag rounded. FALSE default. color Tag color. See https://preview.tabler.io/docs/colors.html. addon Tag addon (right side). addonColor Addon background color. See https://preview.tabler.io/docs/colors.html.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTag.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 tag — tablerTag","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTag.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create a Boostrap 4 tag — tablerTag","text":"","code":"if(interactive()){ library(shiny) library(tablerDash) shiny::shinyApp( ui = tablerDashPage( navbar = NULL, footer = NULL, title = \"test\", body = tablerDashBody( tablerTag(name = \"Tag\"), tablerTag(name = \"Tag\", href = \"https://www.google.com\"), tablerTag(name = \"Tag\", rounded = TRUE, color = \"pink\"), tablerTag( name = \"npm\", href = \"https://www.google.com\", color = \"dark\", addon = \"passing\", addonColor = \"warning\" ), tablerTag(name = \"build\", addon = \"passing\", addonColor = \"success\") ) ), server = function(input, output) {} ) }"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTagList.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 tag list — tablerTagList","title":"Create a Boostrap 4 tag list — tablerTagList","text":"Build tabler tag list","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTagList.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 tag list — tablerTagList","text":"","code":"tablerTagList(...)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTagList.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 tag list — tablerTagList","text":"... Slot tablerTag.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTagList.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 tag list — tablerTagList","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTagList.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create a Boostrap 4 tag list — tablerTagList","text":"","code":"if(interactive()){ library(shiny) library(tablerDash) shiny::shinyApp( ui = tablerDashPage( navbar = NULL, footer = NULL, title = \"test\", body = tablerDashBody( tablerTagList( lapply(X = 1:5, FUN = function(i) { tablerTag(name = i) }) ) ) ), server = function(input, output) {} ) }"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTimeline.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 timeline — tablerTimeline","title":"Create a Boostrap 4 timeline — tablerTimeline","text":"Build tabler timeline","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTimeline.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 timeline — tablerTimeline","text":"","code":"tablerTimeline(...)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTimeline.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 timeline — tablerTimeline","text":"... slot tablerTimelineItem.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTimeline.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 timeline — tablerTimeline","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTimeline.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Create a Boostrap 4 timeline — tablerTimeline","text":"","code":"if(interactive()){ library(shiny) library(tablerDash) shiny::shinyApp( ui = tablerDashPage( navbar = NULL, footer = NULL, title = \"test\", body = tablerDashBody( tablerTimeline( tablerTimelineItem( title = \"Item 1\", status = \"green\", date = \"now\" ), tablerTimelineItem( title = \"Item 2\", status = NULL, date = \"yesterday\", \"Lorem ipsum dolor sit amet, consectetur adipisicing elit.\" ) ) ) ), server = function(input, output) {} ) }"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTimelineItem.html","id":null,"dir":"Reference","previous_headings":"","what":"Create a Boostrap 4 timeline item — tablerTimelineItem","title":"Create a Boostrap 4 timeline item — tablerTimelineItem","text":"Build tabler timeline item","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTimelineItem.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Create a Boostrap 4 timeline item — tablerTimelineItem","text":"","code":"tablerTimelineItem(..., status = NULL, title, date)"},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTimelineItem.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Create a Boostrap 4 timeline item — tablerTimelineItem","text":"... Item content. status Item status. title Item title. date Event date.","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tablerTimelineItem.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Create a Boostrap 4 timeline item — tablerTimelineItem","text":"David Granjon, dgranjon@ymail.com","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tagAssert.html","id":null,"dir":"Reference","previous_headings":"","what":"Assert that a tag has specified properties — tagAssert","title":"Assert that a tag has specified properties — tagAssert","text":"Assert tag specified properties","code":""},{"path":"https://rinterface.github.io/tablerDash/reference/tagAssert.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Assert that a tag has specified properties — tagAssert","text":"","code":"tagAssert(tag, type = NULL, class = NULL, allowUI = TRUE)"},{"path":"https://rinterface.github.io/tablerDash/reference/tagAssert.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Assert that a tag has specified properties — tagAssert","text":"tag tag object. type type tag, like \"div\", \"\", \"span\". class HTML class. allowUI TRUE (default), allow dynamic outputs generated uiOutput htmlOutput. dynamic output provided, tagAssert try validate contents.","code":""},{"path":[]},{"path":"https://rinterface.github.io/tablerDash/news/index.html","id":"documentation-0-1-5-9000","dir":"Changelog","previous_headings":"","what":"Documentation","title":"tablerDash 0.1.5.9000","text":"Upgrade pkgdown setup. Added shinylive support.","code":""},{"path":"https://rinterface.github.io/tablerDash/news/index.html","id":"bug-fix-0-1-5-9000","dir":"Changelog","previous_headings":"","what":"Bug Fix","title":"tablerDash 0.1.5.9000","text":"Resizing tablerCard() triggers shown javascript event, telling shiny update size contained object. Fix overflow issue tablerCard(). now correctly applied card body, header always visible scrolling.","code":""},{"path":"https://rinterface.github.io/tablerDash/news/index.html","id":"tablerdash-010","dir":"Changelog","previous_headings":"","what":"tablerDash 0.1.0","title":"tablerDash 0.1.0","text":"CRAN release: 2019-03-08 first release","code":""}]