├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── R └── layout.R ├── README.md ├── inst └── www │ └── shinygadgets.css ├── less ├── block-button.less ├── gadgets.less ├── mixins.less ├── tabstrip.less ├── titlebar.less └── variables.less ├── man ├── buttonBlock.Rd ├── contentPanel.Rd ├── fillPage.Rd ├── gadgetPage.Rd ├── runGadget.Rd ├── tabstripPanel.Rd ├── titlebar.Rd └── viewer.Rd ├── shinygadgets.Rproj ├── testlayouts ├── test.R ├── test.html └── test2.R └── tools ├── Gruntfile.js └── package.json /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shinygadgets/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | tools/node_modules 5 | -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shinygadgets/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shinygadgets/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/layout.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shinygadgets/HEAD/R/layout.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shinygadgets/HEAD/README.md -------------------------------------------------------------------------------- /inst/www/shinygadgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shinygadgets/HEAD/inst/www/shinygadgets.css -------------------------------------------------------------------------------- /less/block-button.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shinygadgets/HEAD/less/block-button.less -------------------------------------------------------------------------------- /less/gadgets.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shinygadgets/HEAD/less/gadgets.less -------------------------------------------------------------------------------- /less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shinygadgets/HEAD/less/mixins.less -------------------------------------------------------------------------------- /less/tabstrip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shinygadgets/HEAD/less/tabstrip.less -------------------------------------------------------------------------------- /less/titlebar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shinygadgets/HEAD/less/titlebar.less -------------------------------------------------------------------------------- /less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shinygadgets/HEAD/less/variables.less -------------------------------------------------------------------------------- /man/buttonBlock.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shinygadgets/HEAD/man/buttonBlock.Rd -------------------------------------------------------------------------------- /man/contentPanel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shinygadgets/HEAD/man/contentPanel.Rd -------------------------------------------------------------------------------- /man/fillPage.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shinygadgets/HEAD/man/fillPage.Rd -------------------------------------------------------------------------------- /man/gadgetPage.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shinygadgets/HEAD/man/gadgetPage.Rd -------------------------------------------------------------------------------- /man/runGadget.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shinygadgets/HEAD/man/runGadget.Rd -------------------------------------------------------------------------------- /man/tabstripPanel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shinygadgets/HEAD/man/tabstripPanel.Rd -------------------------------------------------------------------------------- /man/titlebar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shinygadgets/HEAD/man/titlebar.Rd -------------------------------------------------------------------------------- /man/viewer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shinygadgets/HEAD/man/viewer.Rd -------------------------------------------------------------------------------- /shinygadgets.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shinygadgets/HEAD/shinygadgets.Rproj -------------------------------------------------------------------------------- /testlayouts/test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shinygadgets/HEAD/testlayouts/test.R -------------------------------------------------------------------------------- /testlayouts/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shinygadgets/HEAD/testlayouts/test.html -------------------------------------------------------------------------------- /testlayouts/test2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shinygadgets/HEAD/testlayouts/test2.R -------------------------------------------------------------------------------- /tools/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shinygadgets/HEAD/tools/Gruntfile.js -------------------------------------------------------------------------------- /tools/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstudio/shinygadgets/HEAD/tools/package.json --------------------------------------------------------------------------------