{"id":13951333,"url":"https://github.com/Appsilon/shiny.blueprint","last_synced_at":"2025-07-20T15:31:24.371Z","repository":{"id":77567389,"uuid":"474396063","full_name":"Appsilon/shiny.blueprint","owner":"Appsilon","description":"Blueprint - React-based UI toolkit for Shiny Apps","archived":false,"fork":false,"pushed_at":"2024-11-26T17:55:27.000Z","size":4638,"stargazers_count":44,"open_issues_count":28,"forks_count":5,"subscribers_count":17,"default_branch":"main","last_synced_at":"2024-11-26T18:38:14.037Z","etag":null,"topics":["blueprintjs","r","react","rhinoverse","shiny"],"latest_commit_sha":null,"homepage":"https://appsilon.github.io/shiny.blueprint","language":"R","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Appsilon.png","metadata":{"files":{"readme":"README.md","changelog":"NEWS.md","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-03-26T16:00:17.000Z","updated_at":"2024-09-11T06:04:12.000Z","dependencies_parsed_at":"2023-09-26T16:44:37.082Z","dependency_job_id":"965d7917-e148-4f20-9a34-37fff783d9dd","html_url":"https://github.com/Appsilon/shiny.blueprint","commit_stats":null,"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Appsilon%2Fshiny.blueprint","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Appsilon%2Fshiny.blueprint/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Appsilon%2Fshiny.blueprint/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Appsilon%2Fshiny.blueprint/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Appsilon","download_url":"https://codeload.github.com/Appsilon/shiny.blueprint/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":226809036,"owners_count":17685496,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["blueprintjs","r","react","rhinoverse","shiny"],"created_at":"2024-08-08T07:00:31.764Z","updated_at":"2024-11-27T19:30:42.037Z","avatar_url":"https://github.com/Appsilon.png","language":"R","funding_links":[],"categories":["Theming","R"],"sub_categories":["Generic Theming"],"readme":"# shiny.blueprint \u003ca href=\"https://appsilon.github.io/shiny.blueprint/\"\u003e\u003cimg src=\"man/figures/shiny-blueprint.png\" alt=\"shiny.blueprint logo\" style=\"float: right; height: 140px;\"\u003e\u003c/a\u003e\n\n\u003e _Palantir's Blueprint for Shiny Apps_\n\n\u003c!-- badges: start --\u003e\n[![CRAN](https://www.r-pkg.org/badges/version/shiny.blueprint)](https://cran.r-project.org/package=shiny.blueprint)\n[![CI](https://github.com/Appsilon/shiny.blueprint/actions/workflows/ci.yml/badge.svg)](https://github.com/Appsilon/shiny.blueprint/actions/workflows/ci.yml)\n[![downloads monthly](https://cranlogs.r-pkg.org/badges/shiny.blueprint)](https://CRAN.R-project.org/package=shiny.blueprint)\n[![downloads total](https://cranlogs.r-pkg.org/badges/grand-total/shiny.blueprint)](https://CRAN.R-project.org/package=shiny.blueprint)\n[![License: LGPL-3.0](https://img.shields.io/badge/License-LGPL--3.0-blue.svg)](https://opensource.org/license/lgpl-3-0)\n\u003c!-- badges: end --\u003e\n\n## Why `shiny.blueprint`?\n\nWe believe that a great UI plays a huge role in the success of application projects. shiny.blueprint gives your apps:\n\n- a beautiful, professional look;\n- a rich set of components easily usable in Shiny;\n- fast speed of development that Shiny is famous for.\n\nTo see `shiny.blueprint` in action check out\nthe [Blueprint Showcase](https://connect.appsilon.com/shiny-blueprint-showcase/) app\nwith all the available components and R usage examples.\n\n## Installation\n\nStable version:\n```r\ninstall.packages(\"shiny.blueprint\", dependencies = TRUE)\n```\n\nDevelopment version:\n```r\nremotes::install_github(\"Appsilon/shiny.blueprint\", dependencies = TRUE)\n```\n\nWith `dependencies = TRUE` the suggested packages (required to run some examples)\nwill be installed in addition to mandatory dependencies.\n\n## Quick start\n\nHere's how to create a basic `shiny.blueprint` app:\n\n```r\nlibrary(shiny)\nlibrary(shiny.blueprint)\n\nshinyApp(\n  ui = tagList(\n    Switch.shinyInput(\n      inputId = \"animate\",\n      value = TRUE,\n      label = \"Animate\"\n    ),\n    reactOutput(\"progress\")\n  ),\n  server = function(input, output) {\n    output$progress \u003c- renderReact({\n      ProgressBar(animate = input$animate)\n    })\n  }\n)\n```\n\nThe majority of Blueprint components are available in `shiny.blueprint`.\nStart typing `shiny.blueprint::` in RStudio to see all available components.\nVisit the [Blueprint docs](https://blueprintjs.com/docs/)\nto see what arguments (props) can be passed to the components.\n\n## Examples\n\nAll components have usage examples in R.\nType `?shiny.blueprint::ComponentName` to see the code\nor `shiny.blueprint::runExample(\"ExampleName\")` to launch it.\nRun this function without arguments to see a list of all available examples.\n\nA showcase application with all components\ncan be launched with `shiny.blueprint::runExample(\"showcase\")`\nor by visiting [this link](https://connect.appsilon.com/shiny-blueprint-showcase/).\n\n## Appsilon\n\n\u003cimg src=\"https://avatars0.githubusercontent.com/u/6096772\" align=\"right\" alt=\"\" width=\"6%\" /\u003e\n\nAppsilon is a **Posit (formerly RStudio) Full Service Certified Partner**.\u003cbr/\u003e\nLearn more at [appsilon.com](https://www.appsilon.com/).\n\nGet in touch [opensource@appsilon.com](mailto:opensource@appsilon.com)\n\nExplore the [Rhinoverse](https://rhinoverse.dev) - a family of R packages built around [Rhino](https://appsilon.github.io/rhino/)!\n\n\u003ca href = \"https://www.appsilon.com/careers\" target=\"_blank\"\u003e\u003cimg src=\"https://raw.githubusercontent.com/Appsilon/website-cdn/gh-pages/WeAreHiring1.png\" alt=\"We are hiring!\"/\u003e\u003c/a\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FAppsilon%2Fshiny.blueprint","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FAppsilon%2Fshiny.blueprint","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FAppsilon%2Fshiny.blueprint/lists"}